body {
  width: 100%;
  height: 6000px;
}

header {
  position: fixed;
  top:0;
  width: 100%;
  height: 110px;
  background-color: #04A2BA;
  -webkit-transition: height 0.3s, background-color 0.3s;
  z-index: 10;
}

header .container_1 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center; 
  font-size:15px;
}

a img {
  height: 80px;
  margin-top: 15px;
  float: left;
  margin-left: 0px;
  width: 75%;
}

header nav {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s;
}

header a {
  text-decoration: none;
  color: white;
  padding: 0px 30px 0px 30px;
  font-family: Microsoft Sans Serif;
}

header nav {
  font-size: 25px;
  margin-top: 25px;
  margin-left: 0px;
  font-family: Microsoft Sans Serif;
}

header .tel_header a{
  margin-top: 10px;
  float: right;
  color: white;
  font-size: 18px;
  margin-right: 20px;
}

header .tel_header a:hover{
  text-decoration: underline;
}

header .tel_header p{
  margin-right: 50px;
  margin-top: 5px;
  float: right;
  color: white;
  font-size: 20px;
  font-family: Microsoft Sans Serif;
}

header .menu-button {
        display: none;
}

@media screen and (max-width: 600px) {
header {
       height: 100px;
}

header .container_1 {
        width: 95%;
}

header a img {
        height: 40px;
        margin-top: 15px;
}

header nav {
        display: none;
}

header .menu-button {
        display: block;
        top: 20px;
        left: 370px;
        cursor: pointer;
        width: 30px;
        height: 20px;
        background-color: transparent;
        border: none;
}

header .menu-button span {
        display: block;
        position: absolute;
        width: 40px;
        height: 3px;
        background-color: white;
        transition: all 0.3s ease-in-out;
	    margin-top:20px;
	    margin-left: -40px;
}

header .menu-button span:nth-child(1) {
        top: 5px;
}

header .menu-button span:nth-child(2) {
        top: 11px;
}

header .menu-button span:nth-child(3) {
        top: 17px;
}

header .menu-button.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
}

header .menu-button.open span:nth-child(2) {
        opacity: 0;
}

header .menu-button.open span:nth-child(3) {
        transform: rotate(-45deg) translate(-6px, -6px);
}

header nav.open { 
        display: block;
        position: absolute;
        top: 85px;
        left: 0;
        width: 110%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 10;
}

header nav.open a {
        display: block; 
        padding: 15px;
        text-align: center;
}

      header .tel_header  {
       display: none
}
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body { 
  margin: 0; 
  font: 16px/1.3 sans-serif; 
}

.CSSgal {
  position: relative;
  overflow: hidden;
  height: 100%; 
  width: 100%;
}

.CSSgal .slider {
  height: 100%;
  white-space: nowrap;
  font-size: 25px;
  transition: 0.8s;
}

.CSSgal .slider > * {
  font-size: 1rem;
  display: inline-block;
  white-space: normal;
  vertical-align: top;
  height: 100%;
  width: 100%;
  background: none 50% no-repeat;
  background-size: cover;
}

.CSSgal .prevNext {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  height: 0;
}

.CSSgal .prevNext > div + div {
  visibility: hidden; 
}

.CSSgal .prevNext a {
  background: #fff;
  position: absolute;
  width: 60px;
  height: 60px;
  line-height: 60px; 
  opacity: 0.7;
  transition: 0.3s;
  transform: translateY(-50%);
  left: 0;
  border-radius: 30px;
}

.CSSgal .prevNext a:hover {
  opacity: 1;
}

.CSSgal .prevNext a + a {
  left: auto;
  right: 0;
}

.slider_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%);
}

.CSSgal h2 {
  position: absolute;
  z-index: 5;
  padding: 10px;
  font-family: Microsoft Sans Serif;
  white-space: nowrap;
}

.slider_img h2 {
  margin: -500px 300px;
  font-size: 40px;
  color: white;
}

.CSSgal .bullets {
  position: absolute;
  z-index: 2;
  bottom: 0;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}

.CSSgal .bullets > a {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-decoration: none;
  border-radius: 30px;
  background: rgba(255, 255, 255, 1);
  transition: 0.3s;
  margin-left: 5px;
}
.CSSgal .bullets > a + a {
  background: rgba(255, 255, 255, 0.5);
}
.CSSgal .bullets > a:hover {
  background: rgba(255, 255, 255, 0.7) !important;
}

.CSSgal > s:target ~ .bullets > * { background: rgba(255, 255, 255, 0.5); }
#s1:target ~ .bullets > *:nth-child(1) { background: rgba(255, 255, 255, 1); }
#s2:target ~ .bullets > *:nth-child(2) { background: rgba(255, 255, 255, 1); }
#s3:target ~ .bullets > *:nth-child(3) { background: rgba(255, 255, 255, 1); }
#s4:target ~ .bullets > *:nth-child(4) { background: rgba(255, 255, 255, 1); }

.CSSgal > s:target ~ .prevNext > * { visibility: hidden; }

#s1:target ~ .prevNext > *:nth-child(1) { visibility: visible; }
#s2:target ~ .prevNext > *:nth-child(2) { visibility: visible; }
#s3:target ~ .prevNext > *:nth-child(3) { visibility: visible; }
#s4:target ~ .prevNext > *:nth-child(4) { visibility: visible; }
#s1:target ~ .slider { transform: translateX(0%); }
#s2:target ~ .slider { transform: translateX(-100%); }
#s3:target ~ .slider { transform: translateX(-200%); }
#s4:target ~ .slider { transform: translateX(-300%); }

.CSSgal{
  color: #fff;  
  text-align: center;
}

.services {
  font-family: Microsoft Sans Serif;
  padding: 50px 0;
}

.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-left: 40px;
}

.services_text {
  max-width: 750px;
  margin: 0 auto;
}

.title_services {
  margin-bottom: 0px;
  margin-top: 30px;
  margin-left: -50px;
}

.borders_services{
	max-width: 800px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
}

.borders_services_02{
	max-width: 800px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 70%;
  margin-top: -130px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__contents_01 img,
.slider__contents img{
	width:500px;
}

.slider__nav {
  width: 12px;
  height: 12px;
  margin-left: 20px;
  margin-bottom: 60px;
  border-radius: 50%;
  z-index: 9;
  outline: 6px solid #999;
  opacity: 0.7;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #00AFCA, 0 0 0 0 #00AFCA;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}
.slider__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

.slider__contents,
.slider__contents_01{
  height: 100%;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__contents_01 {
	margin-top: -20px;
}

.slider__caption{
  font-weight: 500;
  margin: 10px 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  font-family: Microsoft Sans Serif;
}

.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 30px;
  font-family: Microsoft Sans Serif;
}

@-webkit-keyframes check {
  50% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 12px #00AFCA;
  }
  100% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 0 #00AFCA;
}
}

@keyframes check {
  50% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 7px #00AFCA, 0 0 0 15px #00AFCA;
  }
  100% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 0 #00AFCA, 0 0 0 0 #00AFCA;
}
}

.tpr_text {
	margin: auto;
	width: 80%;
}

.border_categories_01,
.border_categories_02,
.border_categories_03,
.border_categories_04,
.border_categories_05,
.border_categories_06,
.border_categories_07,
.border_categories_08,
.border_categories_09,
.border_categories_10,
.border_categories_11 {
  width: 260px;
  height: 280px;
  border: 1px solid white;
  box-shadow: 3px 1px 10px 5px Gainsboro;
  display: block;
  margin: 0 10px;
  transition: transform .5s;
}
	
.border_categories_01,
.border_categories_02,
.border_categories_03,
.border_categories_04,
.border_categories_05,
.border_categories_06 {
  display: inline-block;
  margin-top: 50px;
}

.border_categories_07,
.border_categories_08,
.border_categories_09,
.border_categories_10,
.border_categories_11 {
  display: inline-block;
  margin-top: 25px;
}

.categories img {
  width: 200px;
  height: 200px;
  margin-left: 30px;
  margin-top: 10px;
  padding-bottom: 20px;
}

.categories h4{
  text-align: center;
  font-size: 15px;
  font-family: Microsoft Sans Serif;
}	

.border_categories_01:hover,
.border_categories_02:hover,
.border_categories_03:hover,
.border_categories_04:hover,
.border_categories_05:hover,
.border_categories_06:hover,
.border_categories_07:hover,
.border_categories_08:hover,
.border_categories_09:hover,
.border_categories_10:hover,
.border_categories_11:hover {
  outline: 5px solid Gold;
  transition: outline .4s ease-in-out, transform .1s linear;
  transform: scale(1.1);
  text-decoration: none;
}

.categories a {
  text-decoration: none;
  color: black;
}

.categories a:hover {
  color: black;
  text-decoration: none;
}

.border_cost_02 {
  font-family: Microsoft Sans Serif;
  border: 1px solid white;
  width: 73%;
  height: 250px;
  margin-left: 20px;
  margin-top: 10px;
  box-shadow:0 14px 28px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.22);
}

.border_cost_02 h2{
  font-size: 25px;
  margin-top: 30px;
  text-align: center;
}

.border_cost_02 p{
  font-family: Microsoft Sans Serif;
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 30px;
}

.border_cost_02 button{
  font-family: Microsoft Sans Serif;
  height: 50px;
  width: 250px;
  float: center;
  margin-top: 30px;
  background-color: #00AFCA;
  color: white;
  font-size: 18px;
  border: none;
  transition: 0.5s
}

.border_cost_02 button:hover{
  background: Gold;
  border: Gold;
  color: black;
  transform: scale(1.05);
  cursor: pointer;
}

.border_footer{
  font-family: Microsoft Sans Serif;
  margin-top: 70px;
  width: 100%;
  max-height: 400px;
  height: 100%;
  border: none;
  background: #00AFCA;
}

.footer_text{
  width: 60%;
  margin: 0 auto;
  line-height: 30px;
}

.footer_text p{
	font-size: 20px;
	color: white;
}

.footer_text a{
	font-size: 20px;
	color: white;
	text-decoration: none;
}

.footer_text a:hover{
	color: white;
	text-decoration: underline;
}

.menu a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
}

.site a,
.site p {
	margin-left: -200px !important;
}

.contacts {
	float: right;
	color: white;
}

.footer_text hr {
	margin-top: 30px;
	color: #D1D1D1;
	opacity: 0.5;
	width:100%;
}

.text_col {
	margin-top: 10px;
}

.text_col p{
	color: #D1D1D1;
	font-size: 17px;
}

.bottom_col_right img{
	width: 40px;
	height: 40px;
	margin: 7px;
	opacity: 0.8;
}

.bottom_col_right img:hover{
	opacity: 1;
}

.bottom_col_right{
	float: right;
}

@media screen and (max-width: 600px) {
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
	
.categories h2 {
	margin-top: 50px;
	font-size: 25px;
	font-family: Microsoft Sans Serif;
	text-align: center;
	margin-left: 80px;
}

.border_categories_01,
.border_categories_02,
.border_categories_03,
.border_categories_04,
.border_categories_05,
.border_categories_06,
.border_categories_07,
.border_categories_08,
.border_categories_09,
.border_categories_10,
.border_categories_11 {
    width: 170px;
	height: 210px;
    text-align: center;
	margin: 10px 10px;
}
	
.border_categories_01 {
	margin-left: 20px;
	margin-top: 50px;
}
	
.border_categories_03{
	margin-top: 50px !important;	
}	
	
.border_categories_04,
.border_categories_05,	
.border_categories_06 {
	margin-top: 10px !important;
}
	
.border_categories_02 {
	margin-top: 50px;
}

.categories img {
    width: 140px;
    height: 140px;
	margin-left: 14px;
	margin-top: 10px;
	padding-bottom: 20px;
}

.categories h4 {
    font-size: 15px;
}

.categories a {
    text-decoration: none;
    color: black;
}

.border_cost_02 {
	width: 90%;
	height: 250px;
	margin-right: 0px;
	margin-top: -30px;
}

.border_cost_02 button{
	height: 60px;
	width: 200px;
}
	
.services_text h2 {
    font-size: 30px;
	text-align: center;
	margin-left: 50px;
	margin-top: -100px;
}
	
.services_text {
    max-width: 100%;
    margin: 0 0;
}

.description_services {
    font-size: 18px;
    line-height: 1.6em;
    text-align: left;
    margin-left: 20px;
    margin-top: 10px;
}
	
.borders_services{
	max-width: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.borders_services_02{
	max-width: 100%;
	margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.border_footer{
	margin-top: 50px;
	width: 100% !important;
	height: 510px;
	border: none;
	background: #00AFCA;
	font-family: Microsoft Sans Serif;
}

.footer_text{
	width: 100%;
	margin: 0 0;
	line-height: 30px;
	margin-left: 20px;
}

.footer_text p{
	font-size: 18px;
	color: white;
}

.footer_text a{
	font-size: 17px;
	color: white;
	text-decoration: none;
}

.footer_text a:hover{
	color: white;
	text-decoration: underline;
}

.site {
	text-align: center;
}

.contacts {
	float: left;
}

.footer_text hr {
	margin-top: 30px;
	color: #D1D1D1;
	opacity: 0.5;
	width: 90%;
	margin-left: -10px;
}

.text_col {
	margin-top: 10px;
}

.text_col p{
	color: #D1D1D1;
	font-size: 16px;
	width: 70%;
 }
	
.bottom_col_right img{
	width: 35px;
	height: 35px;
}
	
.bottom_col_right{
	margin-top: 0px;
	float: left;
}

.services_text h2 {
	font-size: 25px;
	text-align: center;
	margin-top: -50px;
	margin-left: 70px;
}
	
.services_text {
	max-width: 750px;
	margin: 0 auto;
}

.title_services {
	margin-bottom: 0px;
	margin-top: 40px;
	margin-left: -50px;
}

.description_services {
	font-size: 20px;
	line-height: 1.6em;
	text-align: right;
	margin-left: 70px;
	margin-top: -40px;
}

.borders_services{
	max-width: 800px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
}

.borders_services_02{
	max-width: 100%;
	margin: 0 auto;
    display: flex;
    justify-content: center;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 90% !important;
  width: 80% !important;
  margin-left: -100px !important;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider_txt img {
	width: 300px !important
}	
	
.slider__nav {
  width: 22px;
  height: 22px;
  margin-left: 20px;
  margin-bottom: 60px;
  border-radius: 50%;
  z-index: 9;
  outline: 6px solid #999;
  opacity: 0.7;
  background: #999;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #00AFCA, 0 0 0 0 #00AFCA;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.slider__nav:checked {
  -webkit-animation: check 0.4s linear forwards;
          animation: check 0.4s linear forwards;
}

.slider__nav:checked:nth-of-type(1) ~ .slider__inner {
  left: 0%;
}
	
.slider__nav:checked:nth-of-type(2) ~ .slider__inner {
  left: -100%;
}
	
.slider__nav:checked:nth-of-type(3) ~ .slider__inner {
  left: -200%;
}
	
.slider__nav:checked:nth-of-type(4) ~ .slider__inner {
  left: -300%;
}

.slider__contents_01 {
  height: 100%;
  width: 100% !important;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
	
.slider__contents {
  height: 100%;
  width: 200% !important;
  padding: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-flex-flow: column nowrap;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin-top: 300px;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}

@-webkit-keyframes check {
  50% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 12px #00AFCA;
}
  100% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 0 #00AFCA;
  }
}

@keyframes check {
  50% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 7px #00AFCA, 0 0 0 15px #00AFCA;
  }
  100% {
    outline-color: #00AFCA;
    box-shadow: 0 0 0 0 #00AFCA, 0 0 0 0 #00AFCA;
  }
}
	
.CSSgal h2, 
.CSSgal p {
  z-index: 5;
  padding: 10px;
  font-family: Microsoft Sans Serif;
}

.slider_img h2 {
  margin: -550px 100px;
  font-size: 30px;
  color: white;
}

.slider_img p {
  margin: -470px 60px;
  font-size: 20px;
  line-height: 40px;
	width: 300px;
}
	
.slider_img br {
  display: none;
  }
}
	
@media screen and (max-width: 1884px) {
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: 50px !important;
  margin-left: 70px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 100%;
  margin-left: 30px;
  margin-top: -200px !important;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__inner img {
	height: 400px;
	width: 40%
}	
	
.slider__inner {
  position: absolute;
  top: -100px;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin-top: 300px;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}
	}

@media screen and (max-width: 1440px) {
header {
  height: 100px;
}

header .container_1 {
  width: 95%;
}

header a img {
  height: 70px;
  margin-top: 0px;
}
	
header nav {
  font-size: 20px;
  margin-top: 25px;
  margin-left: 0px;
  font-family: Microsoft Sans Serif;
}	
	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -50px;
  margin-left: 70px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 95%;
  margin-left: 30px;
  margin-top: -210px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__inner img {
  height: 400px;
  width: auto;
}	
	
.slider__inner {
  position: absolute;
  top: -110px;
  left: 0;
  width: 400%;
  height: 100%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin-top: 300px;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}
.contacts {
  float: left;
}
}

@media screen and (max-width: 1024px) {
header a {
  padding: 0px 12px 0px 12px;
}

header nav {
  font-size: 17px;
  margin-top: 30px;
  margin-left: -20px;
}
	
header .tel_header a{
  font-size: 17px;
}
	
header .tel_header{
  margin-top: 20px;
}
	
.CSSgal h2 {
  width: 80%;
  position: absolute;
  z-index: 5;
  padding: 10px;
  font-family: Microsoft Sans Serif;
  white-space: normal;
}

.slider_img h2 {
  margin: -500px 100px;
  font-size: 40px;
  color: white;
}
		
.border_footer{
  height: 400px !important;
}
	
.contacts {
  float: left;  
}
	
.site a,
.site p {
	margin-left: -100px !important;
}	
	
.footer_text{
  width: 70%;
  margin: 0px auto;
  line-height: 30px;
}

.footer_text p,
.footer_text a {
  font-size: 18px;
}
}

@media (max-width: 1024px) {	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -10px;
  margin-left: 70px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 80%;
  width: 87%;
  margin-left: 100px;
  margin-top: -210px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__inner img {
	height: 300px;
    width: auto;
}	
	
.slider__inner {
  position: absolute;
  top: -130px;
  left: 0;
  width: 400%;
  height: 110%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin-top: 300px;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}
	
.contacts {
	float: left;
}

.border_categories_04,
.border_categories_05,
.border_categories_06 {
		margin-top: 25px;
}
}

@media screen and (max-width: 768px) {
header a img {
  height: 40px;
  width:auto;
  margin-top: 30px;
} 
	
header a {
  padding: 0px 12px 0px 12px;
}

header nav {
  font-size: 13px;
  margin-top: 30px;
  margin-left: -5px;
}
	
header .tel_header a{
  float: right;
  font-size: 11px;
  white-space: normal;
  margin-top: 10px;
}
	
header .tel_header{
  margin-top: 20px;
}

.slider_img h2 {
  margin: -500px 80px;
  font-size: 30px;
  color: white;
}
	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -10px;
  margin-left: 70px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 80%;
  width: 100%;
  margin-left: 30px;
  margin-top: -210px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__inner img {
	height: 40%;
    width: auto;
}	
	
.slider__inner {
  position: absolute;
  top: -130px;
  left: 0;
  width: 400%;
  height: 110%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 22px;
  margin-top: 300px;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 20px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}
	
.site {
	padding-left: 140px;
	white-space: nowrap;
}

.contacts {
	float: left;
	font-size: 17px;
	padding-left: 20px;
}
	
.bottom_col_right img{
	width: 35px;
	height: 35px;
	margin: 4px;
	opacity: 0.8;
}

.bottom_col_right img:hover{
	opacity: 1;
}
	
.bottom_col_right img{
	width: 30px;
	height: 30px;
}

.bottom_col_right{
	margin-top: 0px !important;
	margin-right: -50px;
}	

.footer_text p,
.footer_text a {
	font-size: 18px;
}	
	
.footer_text hr {
	margin-top: 30px;
}	
	
.border_footer{
    max-height: 500px !important;
	height: 100% !important;
}

.border_categories_03,
.border_categories_04{
	margin-top: 25px;
}
}

@media screen and (max-width: 425px) {
header a img {
  height: 40px;
  width:auto;
  margin-top: 25px;
} 
	
.border_categories_03{
	margin-top: 10px !important;	
}	
	
header a {
  padding: 0px 12px 0px 12px;
}

header nav {
  font-size: 14px;
  margin-top: 30px;
  margin-left: -15px;
}
	
header .tel_header a{
  float: right;
  font-size: 13px;
  white-space: normal;
  margin-top: 10px;
}
	
header .tel_header{
  margin-top: 20px;
}

.slider_img h2 {
  margin: -500px 40px;
  font-size: 30px;
  color: white;
}
	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -50px !important;
  margin-left: 60px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 67% !important;
  width: 80% !important;
  margin-left: 70px !important;
  margin-top: 0px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.slider__nav {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  border-radius: 50%;
  z-index: 9;
  margin-top: 10px !important;
  outline: 6px solid #999;
  opacity: 0.7;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #00AFCA, 0 0 0 0 #00AFCA;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}	
	
.slider__inner img {
	height:20%;
    width: auto;
}	
	
.slider__inner {
  position: absolute;
  top: -100px;
  left: 0;
  width: 90%;
  height: 110%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-family: Microsoft Sans Serif;
  margin-top: 200px !important;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 18px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}
	
.bottom_col_right img{
	width: 35px;
	height: 35px;
	margin: 4px;
	opacity: 0.8;
}		

.bottom_col_right img:hover{
	opacity: 1;
}

.bottom_col_right{
	margin-top: -10px !important;
	margin-right: -50px;
	padding-bottom: 10px;
}	

.footer_text p,
.footer_text a {
	font-size: 15px;
	line-height:20px;
}	
	
.footer_text hr {
	margin-top: 20px;
	width: 100%;
}	
	
.border_footer{
	max-height: 700px !important;
	height: 100% !important;
	width: 100%;
}

.text_col p{
	width: 90% !important;
	margin-top: 10px;
}
	
.site {
	padding-left: 250px;
	margin-top: -135px !important;
}	
		
.contacts {
	float: left;
	width: 90% !important;
	margin-left: -20px !important;
	font-size: 12px;
}	
	
.border_cost_02 {
	width: 90%;
	height: 270px;
}		
	
.border_cost_02 button{
	margin-top: 0px; 
}	
}

@media screen and (max-width: 375px) {
header a img {
  height: 40px;
  width:auto;
  margin-top: 25px;
} 
	
header a {
  padding: 0px 12px 0px 12px;
}

header nav {
  font-size: 14px;
  margin-top: 30px;
  margin-left: -15px;
}
	
header .tel_header a{
  float: right;
  font-size: 13px;
  white-space: normal;
	margin-top: 10px;
}
	
header .tel_header{
  margin-top: 20px;
}

.slider_img h2 {
  margin: -500px 40px;
  font-size: 30px;
  color: white;
}

.border_categories_02 {
	margin-top: 20px;
}	
	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -10px;
  margin-left: 50px;
}

.slider_s {
  font-family: Microsoft Sans Serif;
  height: 72% !important;
  width: 100% !important;
  margin-left: 30px !important;
  margin-top: -200px !important;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.slider__caption {
  margin-top: 250px !important;
}
	
.slider__inner img {
	height:20%;
    width: auto;
}	
	
.slider__inner {
  position: absolute;
  top: -100px;
  left: 0;
  width: 90%;
  height: 110%;
  -webkit-transition: left 0.4s;
  transition: left 0.4s;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
	}
	
.slider__caption {
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  margin-top: 300px;
  font-family: Microsoft Sans Serif;
}
	
.slider__txt {
  color: black;
  margin-bottom: 10px;
  max-width: 500px;
  font-size: 18px;
  line-height: 25px;
  font-family: Microsoft Sans Serif;
}

.contacts {
	float: left;
	
	width: 90%;
	margin-left: 0px;
	font-size: 12px;
}

.bottom_col_right img{
	width: 30px;
	height: 30px;
	margin: 4px;
	opacity: 0.8;
}

.bottom_col_right img:hover{
	opacity: 1;
}

.bottom_col_right{
	margin-top: 10px;
	margin-right: -50px;
}	

.border_cost_02 {
	width: 90%;
	height: 270px;
	margin-top: 10px !important;
}	
	
.footer_text p,
.footer_text a {
	font-size: 15px;
	line-height:20px;
}	
	
.footer_text hr {
	margin-top: 10px;
	width: 100%;
}	
	
.text_col {
	width: 100%;
	margin-top: -10px;
}
	
.border_cost_02 {
	margin-top: -20px;
	margin-left: 0px;
}	
}

@media screen and (max-width: 320px){	
.slider_img h2 {
  margin: -500px 25px;
  font-size: 25px;
  color: white;
}
	
.services_text h2 {
  font-size: 25px;
  text-align: center;
  margin-top: -50px;
  margin-left: 50px;
}

.slider__caption {
  margin-top: 250px !important;
}	
	
.slider_s {
  font-family: Microsoft Sans Serif;
  height: 85%;
  width: 100%;
  margin-left: 10px !important;
  margin-top: -210px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
	
.slider__inner {
  top: -140px;
}

.border_cost_02 {
	height:300px;
	margin-top: -40px !important;
	margin-left: 10px;
}	
	
.border_cost_02 button{
	height: 50px;
	width: 180px;
}

.border_cost_02 h2{
	font-size:20px;
}
	
.border_cost_02 p{
	font-size:18px;
}	
	
.border_footer{
	max-height: 600px !important;
	height: 100% !important;
	width:100%;
	margin-left: 0px;
}
	
.site {
	float:left;
	text-align:left;
	padding-left: 230px !important;
}	

.footer_text hr {
	margin-top: 10px !important;	
}	
	
.bottom_col_right{
	margin-top: 0px !important;
	margin-left: 10px;
}	
	
.text_col p{
	font-size: 15px;
}
	
.text_col {
	width: 200px;
}	
		
.tabs .content section h2 {
	font-size: 18px;
}	
	
.tabs ul li label{
	font-size: 19px;	
}	

header .menu-button span {
	    margin-top:30px;
	    margin-left: -40px;
}	
}

.imagebox_main_cat {
	height: 390px;
}

.col-lg-4 {
	margin-top: 10px !important;
}

.tpr_h1{
	margin-top: 100px;
}

.tpr {
	margin-top: -80px;
}

.aioseo-breadcrumb a{
	margin-top: -300px !important;
}

.trp-cart {
	height: 200px;
	width: 200px;
	padding-bottom: 30px;
}

.cib-imagebox {
	margin-left: 30px;
}

.trp-class .c-itembox .cib-imagebox {
    height: 220px;
}

@media screen and (max-width: 1024px) {
.trp-cart {
	height: 170px;
	width: 170px;
	margin-left: 0px;
}
	
.cib-title span {
	margin-top: 0px !important;
	font-size: 13px;
}
	
.alignnone {
    width: 80% !important;
	display: block;  
	margin: 0 auto;
}
	
.imagebox_main_cat {
	height: 340px;
}	
	
.col-lg-4 {
	margin-top: 0px;
}
}

@media screen and (max-width: 768px) {
.trp-cart {
	height: 120px;
	width: 120px;
	margin-left: 0px;
}
	
.cib-title span {
	margin-top: -250px;
	font-size: 13px;
}
	
.imagebox_main_cat {
	height: 380px !important;
}
	
.col-lg-4 {
	margin-top: 50px !important;
}
}

@media screen and (max-width: 320px) {
.trp-cart {
	height: 100px;
	width: 100px;
	margin-left: 0px;
}
}

.navigation a{
	margin-top: 0px;
}

.section_title.white {
	color: black;
}

.imagebox_main_cat {
    min-height: 320px !important;
}

.col-lg-4{
	height: 400px;
}

.cib-image img {
	width: 250px;
	height: 250px;
	object-fit: cover;
	margin-left: 18%;
	margin-top: -220px;
}

.title_main_cat {
	padding-top: 60px;
	margin-top: 220px;
	font-family: Proxima Nova !important;
	font-size: 17px;
}

.navigation a, .navigation span {
    color: #000;
    display: inline-block;
    vertical-align: baseline;
    font-size: 14px;
    text-decoration: underline;
}

.navigation span {
    text-decoration: none; 
}

.breadcrumbs_body span {
	text-decoration: underline;
}

@media screen and (max-width: 1024px) {
.cib-image img {
	width: 200px;
	height: 200px;
	margin-left: 35px;
}

.title_main_cat {
	padding-top: 0px;
}
	
.col-lg-4{
	height: 350px;
}
}

@media screen and (max-width: 768px) {
.cib-image img {
	width: 160px;
	height: 160px;
	margin-left: 11%;
}
}

@media screen and (max-width: 425px) {
.cib-image img {
	width: 140px;
	height: 140px;
	margin-left: 8%;
	margin-top: -160px;
}

.title_main_cat {
	margin-top: 160px;
	font-size: 15px;
}
	
.cib-title span{
	margin-top: 10px;
}		
	
.trp-class .c-itembox .cib-imagebox {
    height: 140px !important;
}
	
.imagebox_main_cat {
	height: 200px !important;	
}	
	
.col-lg-4 {
	margin-top: -10px !important;
}	
}

@media screen and (max-width: 375px) {
.cib-image img {
	width: 130px;
	height: 130px;
	margin-left: 5%;
}
	
.cib-title span{
	margin-top: 10px;
}
	
.imagebox_main_cat {
	height: 350px !important;	
}	
	
.col-lg-4 {
	margin-top: 20px !important;
}	
	
.title_main_cat {
	font-size: 15px;
}	
	
.description_main_cat {
	font-size: 13px;	
}
}

@media screen and (max-width: 320px) {
.cib-image img {
	width: 120px;
	height: 120px;
	margin-left: 0px;
}
	
.cib-title span{
	margin-top: 10px;
}
	
.trp-class .c-itembox .cib-imagebox {
    height: 120px !important;
} 	
	
.imagebox_main_cat {
	height: 350px !important;	
}	
	
.col-lg-4 {
	margin-top: 20px !important;
}
	
.title_main_cat {
	font-size: 13px;	
}
	
.description_main_cat {
	font-size: 13px;
}
}

.active img {
	width: 100%;
	height: auto;
}

.p-header {
	margin-top: -80px;
}

.pgb-mainimage img {
	width: 600px;
}

.container {
	margin-top: 100px;
	font-family: Microsoft Sans Serif;
}

.section_title{
	margin-top: -70px;
}

.c-header h1 {
	margin-top: -60px;
}

.cib-title span,
.cib-desc span,
.c-text h2,
.title_main_cat a,
.c-header p,
.c-header h1,
.p-header h1,
.c-cat-terms,
.cib-title,
.c-cat-terms a,
.categories h4,
.section_title {
	font-family: Microsoft Sans Serif;
}

.description_main_cat {
	font-size: 15px;
}

.flex_foot_top{
  display: flex;
  justify-content: space-between;
}
.flex_foot_number{
  display: flex;
  gap: 40px;
}
.flex_foot_bot{
  display: flex;
  justify-content: space-between;
}
@media(max-width:767px){
.flex_foot_top{
  flex-wrap: wrap;
  gap: 10px;
}
.flex_foot_number{
  flex-wrap: wrap;
  gap: 10px;
}
.flex_foot_bot{
  flex-wrap: wrap;
  gap: 10px;
}
}

.file-item {
	min-height: 150px;
	position: relative;
}

.fi-link {
  position: absolute;
  bottom: 0;
  width: 95%;
}

.fi-cover img{
	height: 70px;
	width: auto !important;
	display: block;
	margin: auto;
}

@media(max-width:425px) {
	.aioseo-breadcrumbs {
		margin-top: -100px !important;
}
	
	.fi-cover img{
	height: 40px;
}
	
	.file-item {
	min-height: 180px;
}
}

.border_cost_02 {
	margin-top: 
}

@media(max-width:1380px) {
.container_1 img {
	margin-top: 20px;
	margin-left: 20px;
}

header nav {
  font-size: 18px;
  margin-top: 30px;
  margin-left: -15px;
}
}

@media(max-width:1597px) {
.container_1 img {
	margin-top: 20px;
	margin-left: 20px;
}

header nav {
  font-size: 18px;
  margin-top: 30px;
  margin-left: -15px;
}
}

@media(max-width:1320px) {
.container_1 img {
	margin-top: 15px;
	margin-left: 20px;
}

header nav {
  font-size: 16px;
  margin-top: 30px;
  margin-left: -15px;
}
}

@media(max-width:1274px) {
.container_1 img {
	margin-top: 15px;
	margin-left: 20px;
}

header nav {
  font-size: 15px;
  margin-top: 30px;
  margin-left: -15px;
}
}

@media(max-width:1251px) {
.container_1 img {
	margin-top: 34px;
	margin-left: 20px;
	width: 150px;
	height: auto;
}

header nav {
  font-size: 14px;
  margin-top: 30px;
  margin-left: -15px;
}

header .tel_header a{
  font-size: 14px;
}
}


@media(max-width:1075px) {
.container_1 img {
	margin-top: 34px;
	margin-left: 20px;
	width: 150px;
	height: auto;
}

header nav {
  font-size: 12px;
  margin-top: 30px;
  margin-left: -15px;
}

header .tel_header a{
  font-size: 13px;
}
}

@media(max-width:755px) {
.container_1 img {
	margin-top: 34px;
	margin-left: 20px;
	width: 120px;
	height: auto;
}

header nav {
  font-size: 10px;
  margin-top: 30px;
  margin-left: -15px;
}

header .tel_header a{
  font-size: 10px;
}
}


@media(max-width:650px) {
.container_1 img {
	margin-top: 40px;
	margin-left: 20px;
	width: 95px;
	height: auto;
}

header nav {
  font-size: 9px;
  margin-top: 30px;
  margin-left: -10px;
}

header .tel_header a{
  font-size: 9px;
}
}

@media(max-width:1600px) {
header nav {
  font-size: 17px;
  margin-top: 30px;
  margin-left: -10px;
}

}

@media(max-width:1302px) {
header nav {
  font-size: 13px;
  margin-top: 30px;
  margin-left: -10px;
}

}

@media(max-width:1048px) {
header nav {
  font-size: 12px;
  margin-top: 30px;
  margin-left: -10px;
}
}

@media(max-width:701px) {
.container_1 img {
	margin-top: 40px;
	margin-left: 20px;
	width: 100px;
	height: auto;
}
	
header nav {
  font-size: 9px;
  margin-top: 30px;
  margin-left: -10px;
}
	
header .tel_header a{
  font-size: 9px;
}
}

@media(max-width:760px) {
	
header nav {
  font-size: 11px;
  margin-top: 30px;
  margin-left: -10px;
}
	
header .tel_header a{
  font-size: 11px;
}
}

@media(max-width:666px) {
	
header nav {
  font-size: 9px;
  margin-top: 30px;
  margin-left: -10px;
}
	
header .tel_header a{
  font-size: 9px;
}
}

/* .container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Расстояние между элементами */
}

/* Стиль для каждого файла */
.file-item {
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 13.33px);
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}

.file-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Обертка для изображения */
.fi-cover {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.fi-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Название файла */
.fi-name {
  padding-top: 5px;
  padding-bottom: 55px;
  font-size: 16px;
  text-align: center;

}

.fi-link {
  padding: 10px;
  text-align: center;
  margin-top: 10px; /* добавлено для разделения */
}

.fi-link a {
  display: inline-block;
  padding: 8px 12px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.fi-link a:hover {
  background-color: #4CAF50;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 992px) {
  .file-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .file-item {
    width: 100%;
  }
} */


.phone-viewport{
	width: 380px;
	height: 600px;
	overflow: hidden;
	background-color: #fafafa;
	border: 10px solid #222;
}
.carousel-item{
	padding: 30px 10px;
	float: left;
}

.card{
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0,0,0,.0500);
	width: 300px;
	
	&__image{
		overflow: hidden;
		position: relative;
		img{
			transform: scale(1.2);
			
		}
		
		.badge{
			position: absolute;
			left: 0;
			top:0;
			right: 0;
			bottom: 0;
			margin: auto;
			background-color: white;
			padding: 10px;
			border-radius: 10px;
			width: 48px;
			height: 48px;
			display: flex;
			align-items: center;
			justify-content: center;
			font-size: 32px;
			color: #666;
			box-shadow: 0 5px 10px rgba(0,0,0,.1);
		}
	}
	
	&__info{
		padding: 30px 30px 50px;
	}
	
	&__title{
		font-weight: 400;
		margin-top: 0;
		line-height: 1;
	}
	&__desc{
		opacity: .5;
	}
}