/*!
Theme Name:     Reboot Child
Theme URI: https://wpshop.ru/themes/reboot
Author: WPShop.ru
Author URI: https://wpshop.ru/
Description: Новая многоцелевая тема от команды WPShop.ru. 11 встроенных модулей, конструктор главной страницы, SEO-оптимизация и моментальная скорость загрузки.
Version: 1.1.0
Text Domain: reboot
Template:   reboot
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*--------------------------------------------------------------
 *   DON'T EDIT THIS FILE
 *   After update you will lose all changes. Use child theme
 *
 *   НЕ РЕДАКТИРУЙТЕ ЭТОТ ФАЙЛ
 *   После обновления Вы потереяете все изменения. Используйте дочернюю тему
 *
 *   https://docs.wpshop.ru/child-themes/
--------------------------------------------------------------*/

:root {
    --background-color: #1e1e2f; /* Глубокий темный синий */
    --secondary-color: #282845; /* Темный серо-синий */
    --accent-color: #6c5ce7; /* Насыщенный фиолетовый */
    --text-color: #ffffff; /* Белый */
    --muted-text-color: #f0f0f0; /* Светло-серый */
    --hover-color: #504cb8; /* Более светлый оттенок фиолетового */
    --scrollbar-color: #4b4b6f; /* Темно-синий для ползунка */
    --input-bg: #24243e; /* Тёмно-синий для инпутов */
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: var(--text-color);
    color: var(--text-color);
  }
  
  .chat-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    transition: max-height 0.3s ease;
  }
  
  .chat-widget.collapsed {
    width: 50px;
    max-height: 50px;
    transition: max-height 0.3s ease;
  }
  
  .chat-header,
  .chat-body,
  .chat-footer {
    display: block;
  }
  
  .chat-widget.collapsed .chat-header,
  .chat-widget.collapsed .chat-body,
  .chat-widget.collapsed .chat-footer {
    display: none;
  }
  
  .expand-icon {
    display: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
  }
  
  .chat-widget.collapsed .expand-icon {
    display: flex;
  }
  
  .chat-widget.collapsed:hover {
    background-color: var(--hover-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }
  
  .chat-header {
    background: var(--accent-color);
    display: flex;
    align-items: center;
    padding: 10px;
  }
  
  .chat-info {
    flex: 1;
  }
  
  .chat-name {
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  .chat-status {
    font-size: 12px;
    color: var(--muted-text-color);
  }
  
  .chat-body {
    flex-grow: 1;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
    background: var(--background-color);
    display: flex;
    flex-direction: column;
  }
  
  .chat-body::-webkit-scrollbar {
    width: 8px;
  }
  
  .chat-body::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color);
    border-radius: 10px;
  }
  
  .chat-body::-webkit-scrollbar-track {
    background: var(--secondary-color);
  }
  
  .chat-message {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 8px;
    max-width: 80%;
    display: inline-block;
    word-wrap: break-word;
  }
  
  .user-message {
    background: var(--accent-color);
    align-self: flex-end;
    color: var(--text-color);
  }
  
  .bot-message {
    background: var(--secondary-color);
    align-self: flex-start;
    color: var(--text-color);
  }
  
  .chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    border-top: 1px solid var(--scrollbar-color);
  }
  
  #chatInput {
    flex: 1;
    padding: 8px;
    border: 1px solid var(--scrollbar-color);
    border-radius: 20px;
    outline: none;
    background: var(--input-bg);
    color: var(--text-color);
  }
  
  
  
  button:active {
    transform: scale(0.95);
  }
  
  .refresh-button {
    margin: 25px auto;
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
  }
  
  .refresh-button:hover {
    background-color: var(--hover-color);
    transform: scale(1.05);
  }
  
  .refresh-button:active {
    transform: scale(0.95);
  }
  
  .loading-spinner {
    background: var(--input-bg);
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 15px auto;
  }
  
  .btn-send {
      border: none;
      font-size: 18px;
      color: var(--text-color);
      cursor: pointer;
      margin-left: 8px;
      padding: 5px 10px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
      background: var(--secondary-color);
  }
  
  .close-button {
      background: var(--accent-color);  
      border: none;
      font-size: 18px;
      color: var(--text-color);
      cursor: pointer;
      margin-left: 8px;
      padding: 5px 10px;
      border-radius: 5px;
      transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @media (max-width: 768px) {
    .chat-widget {
      width: 90%;
      max-width: 400px;
      bottom: 10px;
      right: 10px;
    }
  
    .chat-header {
      padding: 8px;
    }
  
    .chat-status {
      font-size: 10px;
    }
  
    .chat-body {
      padding: 8px;
    }
  
    .chat-message {
      padding: 6px 10px;
      font-size: 12px;
    }
  
    .chat-footer {
      padding: 8px;
    }
  
    #chatInput {
      padding: 6px;
      font-size: 14px;
    }
  
    button {
      font-size: 16px;
    }
  }
  



.baner-top {}

.baner-top .banwrap {height:240px;border:1px solid #005d60; background:url(./img/disert_banner.jpg);}


.baner-top .banwrap p	{
	font-size: 2.4em;
    margin: 0 0 5px;
    font-weight: 700;
    line-height: 45px;
    color: #111;
	    letter-spacing: -2px;
    text-transform: uppercase;
	color:#FFF;
	text-shadow: -1px 2px 7px rgb(0 0 0);
	}
.baner-top .banwrap .textb	{	
	padding:25px;
	width:510px;
	float:left;
	display:inline-block;}
	
	.baner-top .imgb {float:left;display:inline-block;}
	
	.baner-top .rightb {float:right;padding: 25px;}
	.baner-top .rightb ul {padding:0;}
	.baner-top .rightb .ulli li {color: #ffffff;
   
    padding-left: 20px;
    font-size: 14px;}
	
	
	@media (min-width: 992px) and (max-width: 1200px) {

.baner-top .banwrap .textb {
    padding: 25px;
    width: 340px;
    float: left;
    display: inline-block;
}


.baner-top .banwrap .textb {
    padding: 25px;
    width: 340px;
    float: left;
    display: inline-block;
}


.baner-top .banwrap p {
    font-size: 2em;
  
}

}


@media (min-width: 700px) and (max-width: 992px) {
	
	
	.baner-top .imgb {display:none;}
	
	.baner-top .banwrap .textb {
    padding: 25px;
    width: 349px;
    float: left;
    display: inline-block;
}

.baner-top .banwrap p {
    font-size: 2em;
    margin: 0 0 5px;
    font-weight: 700;
    line-height: 45px;
    color: #111;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #FFF;
    text-shadow: -1px 2px 7px rgb(0 0 0);
}
	
}

@media (min-width: 420px) and (max-width: 700px) {
	
	.baner-top .imgb {display:none;}
	
	
	.baner-top .banwrap .textb {
    padding: 14px;
    width: 100%;
    float: left;
    display: inline-block;
}

.baner-top .rightb {
    float: none;
    padding: 25px;
}

.baner-top .banwrap {
    height: auto;
    border: 1px solid #005d60;
    background: url(./img/disert_banner.jpg);
    background-size: cover;
}

.baner-top .banwrap p {
    font-size: 2em;
   
}
	
}



@media (min-width: 320px) and (max-width: 420px) {
	
	.baner-top .imgb {display:none;}
	
	
	.baner-top .banwrap .textb {
    padding: 14px;
    width: 100%;
    float: left;
    display: inline-block;
}

.baner-top .rightb {
    float: none;
    padding: 25px;
}

.baner-top .banwrap {
    height: auto;
    border: 1px solid #005d60;
    background: url(./img/disert_banner.jpg);
    background-size: cover;
}

.baner-top .banwrap p {
    font-size: 1.8em;
    line-height: 36px;
}
	
}

.clr {clear:both;display:block;}



.main-navigation ul li>a, .main-navigation ul li>span {
    position: relative;
    display: block;
    padding: 20px 20px; 
    text-decoration: none;
    font-weight: 700;
    z-index: 1;
    font-size: 14px;
    text-transform: uppercase;
}




#menu-item-115 {background: #008a8f;}


.questions__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.post-card:not(.post-card--small) .post-card__category {
    display: inline-block;
    padding: 3px 5px;
    margin-bottom: 1.2em;
    background: #005d60;
    color: #fff;
    -webkit-border-radius: 1em;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-size: .7em;
    -webkit-transform: translateZ(0);
    transform: translateZ(0); 
}


.garant_block .post-card {
    margin-bottom: 20px;
}

.innerart {
    max-width: 300px;
}

.garantitemwrap {
    background: #f9f9f9;
    padding: 15px;
    border: 1px solid #efefef;
}

.garantitemwrap .ico {
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.garant .tart {
    text-align: center;
    font-weight: 700;
    line-height: 18px;
    padding: 15px 0;
}

.garant .part {
    text-align: center;
    line-height: 18px;
    color: #697c8e;
    font-size: 13px;
}

.garant_block img {/* max-width:45%; */}


.garant_block .post-card {
    margin-bottom: 20px;
	margin-left: 40px;
}

.innerart {
    max-width: 300px;
}

.garant_block .post-card {
    float: left;
   max-width:233px;
}


.ulli li {
    list-style: none;
    font-style: italic;
    color: #4a4a4a;
    background: url(../reboot-child/img/libg.png) left 6px no-repeat;
    padding-left: 20px;
	font-size: 13px;
}


.whatsapp {
    border-right: none;
    background: url(../reboot-child/img/whatsapp.png) left 3px no-repeat;
    color: #999;
	display: inline-block;
    padding-left: 25px;
  /*   background-size: contain; */
    margin: 0 25px;
}



.title_l {
margin-top:30px;
    text-align: center;
    padding-bottom: 15px;
    color: #697c8e;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 28px;
}

.ctr {text-align:center;}


	
	
.LastOrders .Block {
    height: auto;
}

.LastOrders .Right {
    padding-left: 15px;
    max-width: 474px;
}

.LastOrders .OrdersList {
    flex-basis: 0;
    flex-grow: 1;
}

.LastOrders .OrdersList {
   /*  padding-right: 15px; */
}

.LastOrders .OrdersList {
/*     padding-right: 25px;
	padding-left: 25px; */
    padding-bottom: 25px;
    max-height: 650px;
}




.Name{    margin: 0 0 5px;
    font-family: RobotoBold,sans-serif;
    color: #333;
    display: block;
    font-size: 14px;
    font-weight: 700;
	text-decoration:none;
	}

	.Info a {text-decoration:none;}
.Type{/* white-space:nowrap; */overflow:hidden;text-overflow:ellipsis;font-size: 12px;}

.Date {
    margin: 11px 0 0;
    font-size: .8571rem;
}


.WhenDo {
    text-align: center;
    display: inline-block;
    float: right;
    border-radius: 5px;
  padding: 2px 8px;
    font-size: .771rem;
    /* width: 115px; */
    color: #fff;
    background: #005d60;
}



.Order{/* background:#f3f6fb; */box-shadow:0 1px 7px 0px rgb(0 93 96 / 25%);
    margin: 20px 10px;
    padding: 10px;
	height:180px;
}

.WhenDo {
    margin-top: -24px;
}


.form_block .tit_form {
    text-align: center;
    padding-bottom: 15px;
    color: #FFF;
    font-weight: 700;
    text-transform: uppercase;
}


.ListTitle {text-align: center;
    padding-bottom: 15px;
    color: #697c8e;
    font-weight: 700;
    text-transform: uppercase;
	font-size: 28px;
	margin-top:30px;
	}
	
	.LastOrders {
	/* background:#f1f8ff; */
	  /*   padding-top: 50px; */
    overflow: hidden;}






.questions_block{
	min-height: 410px;

	padding-bottom: 60px;
	background-image: url(../reboot-child/img/vopros.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	overflow: hidden;
}

.questions_block .zag{
	font-size: 38px;
	font-family:Gilroy-Bold;
	margin-bottom: 30px;
}
.questions__item{
	box-shadow: 0px 9px 27px rgba(154, 154, 154, 0.16);
	background-color: #fff; 
	padding: 20px 0px 20px 20px;
	border-radius: 10px;
	position: relative;
	user-select: none;
	margin-bottom: 23px;
	position: relative;
	z-index: 3;
}


.questions__item-answer {      padding-top: 15px;  padding-right: 65px;}


.questions_block .block .title{
	cursor: pointer;
	font-size: 17px;
}
.questions__item-arrow:before{
content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    border-radius: 10%;
    background: url(../reboot-child/img/vopros.svg) no-repeat center / 15px, linear-gradient(to right, #005d60, #558b81);
    top: 10px;
    right: 10px;
    box-shadow: 0px 9px 27px rgb(154 154 154 / 16%);
}


.questions__item-title
{
     font-weight: 700; 
    font-size: 21px;
	line-height: 30px;
	
	padding-right: 60px;
	cursor:pointer;
	margin-bottom:0;
}

.questions_block .block .text{
	display: none;
	margin-top: 10px;
}
.questions_block .block.activ .text_{
	display: block;
}

.questions_block .block.activ .title:before{
	background: url(../reboot-child/img/vopros2.svg) no-repeat center / 15px,
	linear-gradient(to right, #03a0a9, #00e4d4);
}


.questions__cols {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 20px;
}


.questions__col {
    -webkit-flex-basis: -webkit-calc(50% - 15px);
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
}


.b-related__header span {    color: #7c7c7c;}


@media only screen and (max-width: 1023px) {
.questions__cols {
    margin-top: 25px;
}

.questions__col {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
}

}



.questions__col_left {
    -webkit-flex-basis: 745px;
    -ms-flex-preferred-size: 745px;
    flex-basis: 745px;
}


.questions__col_right {
    -webkit-flex-basis: 320px;
    -ms-flex-preferred-size: 320px;
    flex-basis: 320px;
}

.site-footer--style-gray {    background: #002c42!important;}




.how-to {
    width: 100%;
}

.how-to h2 {
	margin-bottom: 38px;
	text-align: center;
}

.how-to .h2-descr {
	    margin-bottom: 0;
    font-size: 15px;
    color: #a7a7a7;
	margin-top: 5px;
}

.h2-descr img {  
    /* padding-top: 15px; */
    margin-top: 10px;
    /* line-height: 15px; */
    display: block;
    /* float: left; */
    display: inline-block;
   
    position: relative;
    margin-right: 5px;}

.how-to .wrap2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}


*, ::after, ::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.how-to .wrap2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.how-to .btn {background: #005d60!important;margin-top: 30px;}

.how-to .wrap3 {
	text-align: center
}

.how-to-box {
	-webkit-box-shadow: 0 12px 24px #f0f0f0;
	box-shadow: 0 4px 17px #d7d7d7;
	border-radius: 2px;
	padding: 25px 8px;
	padding-top: 45px;
	text-align: center;
	position: relative;
	margin-bottom: 30px;
	width: 100%
}

.how-to-box h3 {
	font-weight: 700
}

/* .how-to-box:before {
	content: '';
	display: block;
	width: 90%;
	height: 10px;
	position: absolute;
	left: 50%;
	bottom: -10px;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #efefef;
	border-radius: 0 0 20px 20px
} */

.how-to-box-fix {
	height: 110px
	
}

.how-to-box__number {
	left: 50%;
	top: -21px;
	   
}

.how-to-box__number {
	text-align: center;
	overflow: hidden;
	 
}

.how-to-box__number {
	text-align: center;
	
	z-index: 1
}

.how-to-box__number {
	background: #005d60;
	
	position: absolute
}

.how-to-box__number {
	
	padding-top: 12px
}

.how-to-box__number {
	background-size: 1px 100%;
	border-bottom: 3px solid #00a8ab
}

.how-to-box__number {
	color: #535151;
	font-size: 13px
}

.how-to-box__number {
	display: inline-block;
	font-weight: 700
}

.how-to-box__number {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 40px
}

.how-to-box__number {
	height: 40px;
	color: #FFF;
}

@media (min-width:420px) {
	.how-to-box {
		max-width: 175px;
		height: 275px
	}
	.how-to-box h3 {
		font-size: 15px
	}
	.how-to-box p {
		font-size: 10px
	}
	.how-to-box img {
		
	
	}
}

@media (min-width:520px) {
	.how-to-box {
		max-width: 220px
	}
}

@media (min-width:700px) {
	.how-to h2 {
		margin-bottom: 50px
	}
	.how-to-box {
		max-width: 270px;
		height: 335px;
		margin-bottom: 50px
	}
	.how-to-box img {
		width: auto
	}
	.how-to-box h3 {
		font-size: 17px
	}
	.how-to-box p {
		font-size: 12px;
    line-height: 19px;
    color: #697c8e;
	}
}

@media (min-width:992px) {
	.how-to {
		
		
	}
	.how-to h2 {
		margin-bottom: 85px
	}
}

@media (min-width:1100px) {
	.how-to-box {
		width: 210px;
		
	}
}

@media (min-width:1300px) {
	.how-to {
		
	}
	.how-to-box {
		padding-top: 55px;
		width: 200px;
		/* height: 415px; */
		margin: 20px 10px;
	}
	.how-to-box__number {
		padding-top: 11px
	}
}



.btn {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background-size: 1px 100%;
    border-bottom: 3px solid #00a8ab;
    color: #ffffff!important;
  /*   -webkit-box-shadow: 0 12px 20px #fee099; */
/*     box-shadow: 0 12px 20px #00989c; */
    font-size: 19px;
    display: inline-block;
    font-weight: 700;
    text-align: center;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    z-index: 1;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
    background: -webkit-gradient(linear, left top, right top, from(#00e5d5), color-stop(50%, #00c2bd), to(#7fcfd2));
    background: -o-linear-gradient(left, #00e5d5 0, #00c2bd 50%, #7fcfd2 100%);
    background: linear-gradient(
90deg
, #00e5d5 0, #00c2bd 50%, #7fcfd2 100%);
    overflow: hidden;
    text-decoration: none;
}

.btn:after {
	content: "";
	top: -50%;
	right: -50%;
	right: -50%;
	bottom: -50%;
	left: -50%;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(229, 172, 142, 0)), color-stop(50%, rgba(255, 255, 255, .7)), to(rgba(229, 172, 142, 0)));
	background: -o-linear-gradient(top, rgba(229, 172, 142, 0), rgba(255, 255, 255, .7) 50%, rgba(229, 172, 142, 0));
	background: linear-gradient(to bottom, rgba(229, 172, 142, 0), rgba(255, 255, 255, .7) 50%, rgba(229, 172, 142, 0));
	-webkit-transform: rotateZ(60deg) translate(-5em, 7.5em);
	-ms-transform: rotate(60deg) translate(-5em, 7.5em);
	transform: rotateZ(60deg) translate(-5em, 7.5em);
	opacity: 0;
	position: absolute;
	z-index: 1;
	-webkit-animation: sheens 3s infinite;
	animation: sheens 3s infinite
}


@media (min-width:409px) {
	.btn-info {
		padding: 15px 25px;
	}
}

.menu_footer li {list-style: none;}

.menu_footer {padding: 0;}



.flex-container {
  display: flex; 
  flex-wrap: wrap;
  justify-content: space-between;
}

.adr {margin:0;}
.adr_block {margin-top:15px;}

.expert-q .expert-tit {
    font-size: 22px;
    font-weight: 700;
    padding: 0 0 15px 0;
    text-align: center;
}

.expert-q img {
    display: block;
    margin: 0 auto;
}

.expert-q .expert-name{
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    padding: 5px 0;
}

.expert-q .expert-text {
    text-align: center;
    padding: 15px 0;
}

.expert-q .link-expert {

        text-align: center;
    border: 1px solid #07546f;
    border-radius: 5px;
    padding: 8px 0;
}

.top_adrs {
	display: flex;
    flex-wrap: wrap;
	margin: 0 auto;
    width: 230px;
    align-items: center;
	}
	
	
	.email_top {
    border-right: none;
    background: url(../reboot-child/img/email_top.png) left 5px no-repeat;
    color: #000;
    padding-left: 25px;
   /*  background-size: contain; */
    margin: 0 25px;
}

.phone_top {
    border-right: none;
    background: url(../reboot-child/img/phone_top.png) left 5px no-repeat;
    color: #000;
    padding-left: 25px;
   /*  background-size: contain; */
    margin: 0 25px;
	text-decoration:none;
}

