@charset "utf-8";
body {
   background-color:#f8f8f8;
   color:#363535;
   font-family: Verdana, Arial, Helvetica, sans-serif;
 }

::selection {
  background:#1e90ff;
  color:#FFF;
  text-shadow: 1px 1px 2px black;
}

/* Safari & Chrome - Webkit Rendering */
::-webkit-selection {
  background:#1e90ff;
  color:#FFF;
  text-shadow: 1px 1px 2px black;
}

/* Mozilla based - Gecko Rendering */ 
::-moz-selection {
  background:#1e90ff;
  color:#FFF;
  text-shadow: 1px 1px 2px black;
}

@keyframes zoomInEntrance {
    0% {
        /* Start small and invisible */
        transform: scale(0.1); 
        opacity: 0;
    }
    100% {
        /* End at original size and fully visible */
        transform: scale(1);
        opacity: 1;
    }
}

.animated-text {
  opacity: 0;
  transform: translateX(100%);
  animation-name: slideInFromRight; /* Имя ключевых кадров */
  animation-duration: 2s;         /* Длительность 1 секунда */
  animation-timing-function: ease-out; /* Плавность анимации */
  animation-fill-mode: forwards;  /* Сохранить финальное состояние */
  animation-delay: 0.5s;          /* Задержка перед запуском 0.5 сек */
}

.animated-text2 {
  opacity: 0;
  transform: translateX(100%);
  animation-name: slideInFromLeft; /* Имя ключевых кадров */
  animation-duration: 2s;         /* Длительность 1 секунда */
  animation-timing-function: ease-out; /* Плавность анимации */
  animation-fill-mode: forwards;  /* Сохранить финальное состояние */
  animation-delay: 0.5s;          /* Задержка перед запуском 0.5 сек */
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%); /* Начинаем за пределами экрана справа */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* Завершаем в исходной позиции */
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%); /* Начинаем за пределами экрана справа */
    opacity: 0;
  }
  100% {
    transform: translateX(0); /* Завершаем в исходной позиции */
    opacity: 1;
  }
}

@-moz-document url-prefix() {
html {
  scrollbar-color: #00cfff #f8f8f8;
	}
}

::-webkit-scrollbar {
  width: 7px; /* Ширина */
}
/* Стилизуем направляющую */
::-webkit-scrollbar-track {
  background: #f8f8f8;
  border-radius: 5px;
}
/* Стилизуем сам ползунок */
::-webkit-scrollbar-thumb {
  background: -webkit-linear-gradient(90deg, #00b4ff,#3bc4fd,#84d7f9);/* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(90deg, #00b4ff,#3bc4fd,#84d7f9);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */                 
  border-radius: 5px;
}
/* Меняем цвет при наведении */
::-webkit-scrollbar-thumb:hover {
background: -webkit-linear-gradient(-90deg, #00b4ff,#3bc4fd,#84d7f9);/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(-90deg, #00b4ff,#3bc4fd,#84d7f9);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

a:link.c19 {text-decoration: none; border-bottom: 1px dashed blue; font-size:12px; color: blue; z-index: 15;}
a:hover.c19 {text-decoration:none; border-bottom: none;}
a:visited.c19 {color: blue;}

a:link.c20 {text-decoration: none; border-bottom: 1px dotted #039; color: #039; transition: color 0.7s ease;}
a:hover.c20 {text-decoration:none; border-bottom: none; color: #044ad6; transition: color 0.7s ease;}
a:active.c20 {color: #2a6ef7;}
a:visited.c20 {color: #039;}

a:link.c21 {text-decoration: none; border-bottom: 1px dotted #363535; color: #363535;  transition: color 0.7s ease;}
a:hover.c21 {text-decoration:none; border-bottom: none; color: #808080; transition: color 0.7s ease;}
a:active.c21 {color: #a0a0a0;}
a:visited.c21 {color: #363535;}

a:link.c22 {text-decoration: none; border-bottom: 1px dotted #1e90ff; color: #1e90ff; transition: color 0.7s ease;}
a:hover.c22 {text-decoration:none; border-bottom: none; color: #00bfff; transition: color 0.7s ease;}
a:active.c22 {color: #00e3ff;}
a:visited.c22 {color: #039;}

.list {
font-family: Verdana, Arial, Helvetica, sans-serif;
text-align:justify;
line-height: 25px;
position:left;
list-style-type: none;
}

.list2 {
font-family: Verdana, Arial, Helvetica, sans-serif;
text-align:justify;
line-height: 25px;
position:left;
margin-left: 1em;
font-size: 10px;
color: #003399;
list-style-type: none;
}

.list3 {
position:left;
font-size: 0.8em;
margin-left: -30px;
list-style-type: none;
}

.mini_link {color:blue; text-decoration:underline; font-size: 11px;}
.mini_link:hover {color:#2962FF; text-decoration:none;}
.mini_link:active {color:#00CCFF; text-decoration:none;}

.mini_link2 {color:blue; text-decoration:none; font-size: 13px;}
.mini_link2:hover {color:#2962FF; text-decoration:underline;}
.mini_link2:active {color:#00CCFF; text-decoration:none;}


 p {
 	text-align:justify;
	margin-left: 1.5em;
 }

.container2 h1 {
    animation-name: zoomInEntrance;
    animation-duration: 3s;
    animation-fill-mode: backwards;
}

.h1 {
    animation-name: zoomInEntrance;
    animation-duration: 3s;
    animation-fill-mode: backwards;
}

.container2 h2 {
    animation-name: zoomInEntrance;
    animation-duration: 3s;
    animation-fill-mode: backwards;
}

h2 {
    animation-name: zoomInEntrance;
    animation-duration: 3s;
    animation-fill-mode: backwards;
}

.products_margin {margin-left: 30px;}

.capsula {
    background:
	url("https://regmed.uz/images/capsula2.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/capsula4.png") no-repeat 0% 0% fixed;
	background-size: 25%, 15%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula2 {
    background:
	url(https://regmed.uz/images/capsula1.gif) no-repeat 90% 40% fixed,
	url(https://regmed.uz/images/capsula3.png) no-repeat 0% 0% fixed;
	background-size: 25%, 15%;
	display: table;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-webkit-animation: pulsing2 55s infinite;
    animation: pulsing2 55s infinite;
}

.capsula3 {
    background:
	url("https://regmed.uz/images/ste_ton.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/blue_syringe.png") no-repeat 0% 0% fixed;
	background-size: 35%, 25%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula4 {
    background:
	url("https://regmed.uz/images/tomograph.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/tonometer.png") no-repeat 0% 0% fixed;
	background-size: 35%, 25%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-webkit-animation: pulsing2 55s infinite;
    animation: pulsing2 55s infinite;
}

.capsula5 {
    background:
	url("https://regmed.uz/images/tonometer2.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/stethoscope.png") no-repeat 0% 0% fixed;
	background-size: 25%, 25%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	overflow: hidden;
	transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula6 {
    background:
	url("https://regmed.uz/images/baa2.png") no-repeat 90% 40% fixed;
	background-size: 90%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula7 {
    background:
	url("https://regmed.uz/images/baa3.png") no-repeat fixed;
	background-position: center;
	background-size: 30%;  
	position: fixed;
    height:35%;
    width:35%;
	margin: 35px -100px 0 0;
	opacity: 0.2;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

.capsula8 {
    background:
	url("https://regmed.uz/images/ds3.png") no-repeat 90% 40% fixed;
	background-size: 50%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula9 {
    background:
	url("https://regmed.uz/images/ds5.png") no-repeat fixed;
	background-position: center;
	background-size: 50%;  
	position: fixed;
    height:35%;
    width:35%;
	margin: 35px -55px 0 0;
	opacity: 0.2;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

.capsula10 {
    background:
	url("https://regmed.uz/images/vet3.png") no-repeat 90% 40% fixed;
	background-size: 50%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula11 {
    background:
	url("https://regmed.uz/images/vet2.png") no-repeat fixed;
	background-size: 50%;
	position: fixed;
    height:60%;
    width:30%;
	opacity: 0.2;
	margin: 75px 0 0 200px;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

.capsula12 {
    background:
	url("https://regmed.uz/images/cos3.png") no-repeat fixed;
	background-position: center;
	background-size: 50%;  
	position: fixed;
    height:35%;
    width:35%;
	margin: 75px -55px 0 0;
	opacity: 0.2;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

.capsula13 {
    background:
	url("https://regmed.uz/images/cos4.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/cos5.png") no-repeat 0% 0% fixed;
	background-size: 10%, 10%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula14 {
    background:
	url("https://regmed.uz/images/cos7.png") no-repeat 90% 40% fixed,
	url("https://regmed.uz/images/cos6.png") no-repeat 0% 0% fixed;
	background-size: 40%, 10%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(40deg);
	-webkit-transform: rotate(40deg);
	-webkit-animation: pulsing2 55s infinite;
    animation: pulsing2 55s infinite;
}

.capsula15 {
    background:
	url("https://regmed.uz/images/cos8.png") no-repeat 90% 40% fixed;
	background-size: 50%;
	position: absolute;
    height:50%;
    width:50%;
	opacity: 0.2;
	transform: rotate(-40deg);
	-webkit-transform: rotate(-40deg);
	-webkit-animation: pulsing 55s infinite;
    animation: pulsing 55s infinite;
}

.capsula16 {
    background:
	url("https://regmed.uz/images/tonometer2.png") no-repeat fixed;
	background-position: center;
	background-size: 25%;  
	position: fixed;
    height:35%;
    width:35%;
	margin: 75px -55px 0 0;
	opacity: 0.2;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

.capsula17 {
    background:
	url("https://regmed.uz/images/medicines_bottle.png") no-repeat fixed;
	background-position: center;
	background-size: 40%;  
	position: fixed;
    height:35%;
    width:35%;
	margin: 75px -55px 0 0;
	opacity: 0.2;
	-webkit-animation: moveUpDown 3s ease-in-out infinite alternate;
    animation: moveUpDown 3s ease-in-out infinite alternate;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0); /* Начальная позиция */
  }
  100% {
    transform: translateY(-10%); /* Вверх на 20px */
  }
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.3, 0.3);
    transform: rotate(-40deg) scale(0.3, 0.3)
  }
  25% {
    -webkit-transform: scale(0.5, 0.5);
    transform: rotate(-20deg) scale(0.5, 0.5);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(0.7, 0.7);
    transform: rotate(0deg) scale(0.7, 0.7);
  }
  75% {
    -webkit-transform: scale(0.5, 0.5);
    transform: rotate(20deg) scale(0.5, 0.5);
  }
  100% {
    -webkit-transform: scale(0.3, 0.3);
    transform: rotate(40deg) scale(0.3, 0.3);
  }
}

@-webkit-keyframes pulsing2 {
  0% {
    -webkit-transform: scale(0.3, 0.3);
    transform: rotate(40deg) scale(0.3, 0.3)
  }
  25% {
    -webkit-transform: scale(0.5, 0.5);
    transform: rotate(20deg) scale(0.5, 0.5);
  }
  50% {
    -webkit-transform: rotate(0deg) scale(0.7, 0.7);
    transform: rotate(0deg) scale(0.7, 0.7);
  }
  75% {
    -webkit-transform: scale(0.5, 0.5);
    transform: rotate(-20deg) scale(0.5, 0.5);
  }
  100% {
    -webkit-transform: scale(0.3, 0.3);
    transform: rotate(-40deg) scale(0.3, 0.3);
  }
}

.capsula:hover,
.capsula2:hover,
.capsula3:hover,
.capsula4:hover,
.capsula5:hover,
.capsula6:hover,
.capsula7:hover,
.capsula8:hover,
.capsula9:hover,
.capsula10:hover,
.capsula11:hover,
.capsula12:hover,
.capsula13:hover,
.capsula14:hover,
.capsula15:hover,
.capsula16:hover,
.capsula17:hover
{
    opacity: 0.7;
}

.text_shadow{
  color: linear-gradient(180deg, #000000, #666666, #999999);
  font-size: 3em;
  display: inline-block;
  text-shadow: 0 -3px 0 #333,
  0 6px 8px rgba(0,0,0,.4),
  0 9px 10px rgba(0,0,0,.15),
  0 30px 10px rgba(0,0,0,.18),
  0 15px 10px rgba(0,0,0,.21);
}

.text_shadow2{
 color: linear-gradient(180deg, #000000, #666666, #999999);
 font-size: 2em;
 margin-left: 20px;
 display: inline-block;
 text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
              0px -5px 35px rgba(255,255,255,0.3);
}

.text_shadow3{
  color: linear-gradient(180deg, #000000, #666666, #999999);
  font-size: 3em;
  text-align: justify;
  display: inline-block;
  text-shadow: 0 -3px 0 #333,
  0 6px 8px rgba(0,0,0,.4),
  0 9px 10px rgba(0,0,0,.15),
  0 30px 10px rgba(0,0,0,.18),
  0 15px 10px rgba(0,0,0,.21);
}

.text_div {
	display: flex;
    justify-content: center; /* Центр по горизонтали */
    align-items: center;     /* Центр по вертикали */
}

.button {
    cursor: pointer;
	-moz-box-shadow:inset 0px -1px 15px 1px #fafafa;
	-webkit-box-shadow:inset 0px -1px 15px 1px #fafafa;
	box-shadow:inset 0px -1px 15px 1px #fafafa;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0cbff5), color-stop(1, #0c33f5) );
	background:-moz-linear-gradient( center top, #0cbff5 5%, #0c33f5 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0cbff5', endColorstr='#0c33f5');
	background-color:#0cbff5;
	-moz-border-radius:7px;
	-webkit-border-radius:7px;
	border-radius:7px;
	border:1px solid #fafafa;
	display:inline-block;
	color:#ffffff;
	font-family:Verdana;
	font-size:11px;
	font-weight:bold;
	padding:5px 9px;
	text-decoration:none;
	text-shadow:1px 0px 1px #ffffff;}

.button:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #0c33f5), color-stop(1, #0cbff5) );
	background:-moz-linear-gradient( center top, #0c33f5 5%, #0cbff5 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0c33f5', endColorstr='#0cbff5');
	background-color:#0c33f5;}

.button:active {
	position:relative;
	top:1px;}

.medicines {
  background-image:url(https://regmed.uz-global/images/medicines.png);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 200px 20px;
}

.med_div {
  background-image:url(https://regmed.uz-global/images/med-div.jpg);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 250px 0px;
}

.baa {
  background-image:url(https://regmed.uz-global/images/baa.jpg);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 200px 0px;
}

.dsup {
  background-image:url(https://regmed.uz-global/images/dsup.jpg);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 200px 0px;
}

.cos {
  background-image:url(https://regmed.uz-global/images/cos.jpg);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 200px 0px;
}

.vet {
  background-image:url(https://regmed.uz-global/images/vet.jpg);
  max-width:100%;
  max-height:100%;
  background-repeat:no-repeat;
  background-position: 200px 0px;
}

@media only screen and (max-width: 800px) {
 	
.text_shadow3{
 color: linear-gradient(180deg, #000000, #666666, #999999);
 font-size: 1.5em;
 width: 100%;
 margin-left: 20px;
 text-align: center;
 display: inline-block;
 text-shadow: 2px 8px 6px rgba(0,0,0,0.2),
              0px -5px 35px rgba(255,255,255,0.3);
}
	
.products_margin {margin-left: auto;}
	
	.h1 {text-align: center; width: 100%;}
	
	.h2 {text-align: center; width: 100%;}

  }