/* ------- REDESIGN --------- */

/* footer clock */
.span3 iframe{
  width: 100% !important;
}

/* news */
.list-blog li {
  display: block;
  margin-top: 35px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.list-blog li:hover {
  transition: all .5s ease;
  background: #64b0e1;
}
.list-blog li:hover .text-info{
  transition: all .5s ease;
  color: rgb(51, 51, 51);
}
.list-blog li:hover .pull-left{
  transition: all .5s ease;
  color: #fff;
}
.extra-wrap p{
  color: rgb(51, 51, 51);
}
.list-blog li:hover .extra-wrap p{
  transition: all .5s ease;
  color: #fff;
}
.list-blog li:hover .badge{
  transition: all .5s ease;
  background: rgb(51, 51, 51);
}
.list-blog li:hover div.clearfix div{
  color: #fff;
}
.list-blog li:hover a.btn{
  transition: all .5s ease;
  background: rgb(51, 51, 51);
}
/* tarifi */
.span12 .row.thumbnails{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.span_tarif{
  position: relative;
  overflow: hidden;
  width: 300px;
  height: 350px;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 200px 150px;
  justify-content: center;
  align-items: center;
  transition: all .2s ease;
  margin: 0px;
}
@media screen and (max-width: 650px) {
  .span_tarif{
    width: 100%;
    max-width: 400px;
  }
}
/* @media screen and (min-width: 800px) {
  .span12 .row.thumbnails{
    margin: 30px 0px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .span4{
    display: none;
  }
} */
.tarif_hover_fon{
  position: absolute;
  width: calc(100% + 400px);
  height: 40px;
  left: calc(0% - 120px);
  top: calc(0% - 500px);
  transform: rotate(-45deg);
  animation-name: zoomIN;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background: linear-gradient(90deg,#ffffff1a,#ffffffbf,#ffffff0d)
}
@keyframes zoomIN {
  0% {
    top: calc(0% - 200px);
  }
  10% {
    top: calc(100% + 120px);
  }
  100%{
    top: calc(100% + 120px);
  }
}
.span_tarif .tarif-info{
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 5px));
  grid-template-rows: auto;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  height: 100%;
  background: #373e45;
  padding: 15px;
  box-sizing: border-box;
}
.span_tarif .tarif-info .tarif-info-col{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  gap: 5px;
  align-items: center;
  height: 100%;
}
/* name */
.span_tarif .tarif-info .tarif-info-col .ti-name{
  font-weight: bold;
  font-size: 25px;
  color: #f9d72c;
}
/* price */
.span_tarif .tarif-info .tarif-info-col .ti-price{
  color: rgb(175 175 175);
  font-size: 16px;  
}
.span_tarif .tarif-info .tarif-info-col .ti-price span{
  font-weight: bold;
  color: #fff;
  font-size: 35px;  
}
/* speed */
.span_tarif .tarif-info .tarif-info-col .ti-speed{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.span_tarif .tarif-info .tarif-info-col .ti-speed svg{
  width: 20px;
  height: 20px;
}
.span_tarif .tarif-info .tarif-info-col .ti-speed svg path{
  fill: rgb(175 175 175);
}
.span_tarif .tarif-info .tarif-info-col .ti-speed span{
  width: auto;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
/* channel */
.span_tarif .tarif-info .tarif-info-col .ti-channel{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.span_tarif .tarif-info .tarif-info-col .ti-channel svg{
  width: 20px;
  height: 20px;
}
.span_tarif .tarif-info .tarif-info-col .ti-channel svg path{
  fill: rgb(175 175 175);
}
.span_tarif .tarif-info .tarif-info-col .ti-channel div{
  width: auto;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.span_tarif .tarif-info .tarif-info-col .ti-channel div span{
  font-weight: bold;
  color: #fff;
}
.tarif_img{
  width: 100%;
  height: 100%;
}
.tarif_img img{
  width: 100%;
  height: 100%;
}
.tarif_title{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: bold;
  color: #e8e8e8;
  text-align: center;
  background: rgb(56 62 69 / 63%);
}
.tarif_hover{
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 200px 150px;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.658);
  color: white;
  opacity: 0;
  left: 0%;
  top: 0%;
  transform: translateY(-500px);
  transition: all .5s ease;
}
.span_tarif:hover .tarif_hover{
  opacity: 1;
  transform: translateY(0px);
}
.tarif_hover a{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  padding: 0px;
  background: #64b0e1;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all .5s ease;
}
.tarif_hover a:hover{
  background: #64b0e1;
}
.tarif_hover div{
  color: #4b6a86;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  height: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.75);
}
/* Беспроводное оборудование */
.bg-white .container h3{
	font-size: 45px;
}
.block-1{
  margin: 0px;
  padding: 0px 0px 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.block-1 .span3{
  width: 260px;
  margin: 0px;
  padding: 0px;
  text-align: center;
  color: #292F36;
  background: white;
  border-radius: 20px;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}
.span3 .block-1-box{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 50px 160px 50px 40px;
}
.block-1-box h3, .block-1-box div, .block-1-box div img, .block-1-box a{
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
.block-1-box h3 a{
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background: #64b0e1;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-1-box a{
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #64b0e1;
  transition: all .5s ease;
}
.block-1-box a:hover{
  color: white;
  background: #373e45;
}
/* ---------------- slider new ----------------- */
section.section-slider{
  margin: 0px;
}
section.section-slider div.swiper{
  width: 100%;
  overflow: hidden;
}
section.section-slider div.swiper div.swiper-wrapper .swiper-slide{
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: center;
  cursor: pointer;
  scale: 0.5;
  opacity: 0;
  transition: all .5s ease;
}
section.section-slider div.swiper div.swiper-wrapper .swiper-slide.swiper-slide-active{
  scale: 1;
  opacity: 1;
}
section.section-slider div.swiper .swiper-button-next,
section.section-slider div.swiper .swiper-button-prev{
  width: 40px;
  height: 40px;
  background: #6db0e0;
  border-radius: 5px;
  border: 1px solid #fff;
  overflow: hidden;
  color: #fff;
  box-shadow: 1px 1px 12px 0 rgb(0 0 0 / 30%);
  transition: all .5s ease;
}
section.section-slider div.swiper .swiper-button-next:hover,
section.section-slider div.swiper .swiper-button-prev:hover{
  background: #373e45;
}
section.section-slider div.swiper .swiper-button-next::after,
section.section-slider div.swiper .swiper-button-prev::after{
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 20px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  transition: all .2s ease;
  top: 50%;
}
section.section-slider div.swiper .swiper-button-next{
  right: 10px;
  left: auto;
}
section.section-slider div.swiper .swiper-button-prev{
  right: auto;
  left: 10px;
}
section.section-slider div.swiper .swiper-pagination{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0%);
}
section.section-slider div.swiper .swiper-pagination .swiper-pagination-bullet{
  width: 15px;
  height: 15px;
  background: #00000061;
  border: 2px solid #fff;
  padding: 3px;
  box-sizing: border-box;
  opacity: 1;
  transition: all .5s ease;
}
section.section-slider div.swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background: #64b0e1;
}
@media screen and (max-width: 900px){
  section.section-slider div.swiper .swiper-button-next,
  section.section-slider div.swiper .swiper-button-prev{
    width: 30px;
    height: 30px;
  }
  section.section-slider div.swiper .swiper-button-next::after,
  section.section-slider div.swiper .swiper-button-prev::after{
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
@media screen and (max-width: 600px){
  section.section-slider div.swiper .swiper-button-next{
    right: 5px;
  }
  section.section-slider div.swiper .swiper-button-prev{
    left: 5px;
  }
  section.section-slider div.swiper .swiper-button-next,
  section.section-slider div.swiper .swiper-button-prev{
    width: 25px;
    height: 25px;
    transform: translateY(30%);
  }
  section.section-slider div.swiper .swiper-button-next::after,
  section.section-slider div.swiper .swiper-button-prev::after{
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  section.section-slider div.swiper .swiper-pagination .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 400px){
  section.section-slider div.swiper .swiper-button-next,
  section.section-slider div.swiper .swiper-button-prev{
    display: none;
    width: 20px;
    height: 20px;
    transform: translateY(50%);
  }
  section.section-slider div.swiper .swiper-button-next::after,
  section.section-slider div.swiper .swiper-button-prev::after{
    width: 20px;
    height: 20px;
  }
}
/* ---------------- slider ----------------- */
.slider{
  position: relative;
	height: 558px;
}
.slider__slides{
  z-index: 1;
	position: relative;
	height: 100%;
}
.slide__inner{
  position: absolute;
	width: 100%;
	height: 100%;
	background-size: contain;
	background-repeat: no-repeat;
  background-position: center center;
  background-color: #373e45;
}
.slider__control{
  z-index: 1;
	position: absolute;
	top: 50%;
	left: calc(0% + 30px);
	width: 40px;
	height: 40px;
	margin-left: -30px;
	margin-top: -30px;
	border-radius: 50%;
	background: #373e454d;
	transition: background-color 0.3s;
	cursor: pointer;
}
.slider__control-line:after{
  background-color: #fff;
}
.slider__control-line:after{
  animation: arrowLineRotation 0.49s;
}
.slider__control-line:nth-child(1):after{
  animation: arrowLineRotationRev 0.49s;
}	
.slider__control--right{
  left: 99%;
  transform: rotate(180deg);
}
.slider__control-line:nth-child(2){
  transform: translateY(1px) rotate(135deg);
}
.slider__control-line{
  position: absolute;
	left: 15px;
	top: 50%;
	width: 3px;
	height: 14px;
	transform-origin: 50% 0;
	transform: rotate(-45deg);
}
.slider__control-line:nth-child(2){
  transform: translateY(1px) rotate(-135deg);
}
.slider__control-line:after{
  content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff96;
	transition: background-color 0.3s;
}
		
@keyframes arrowLineRotation{
  to{
    transform: rotate(180deg);
  }
}
		
@keyframes arrowLineRotationRev{
  to{
    transform: rotate(-180deg);
  }
}
.slide{
  overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	transition: clip-path 0s 0.91s;
	clip-path: circle(30px at 120vw 50%);
}
.slide{
  background-color: #fff;
}
.slide.s--prev{
  clip-path: circle(30px at 120vw 50%);
}
.slide.s--active{
  z-index: 1;
		transition: clip-path 1s;
		clip-path: circle(100%);
}
/* .slide.s--active.s--active-prev{
  clip-path: circle(120vmax at 30vw 50%);
} */
@media screen and ( max-width: 1400px ){
  .slider{
    height: 600px
  }
}
@media screen and ( max-width: 1300px ){
  .slider{
    height: 500px
  }
}
@media screen and ( max-width: 1100px ){
  .slider{
    height: 500px
  }
}
@media screen and ( max-width: 1000px ){
  .slider{
    height: 400px
  }
}
@media screen and ( max-width: 850px ){
  .slider{
    height: 300px
  }
}
@media screen and ( max-width: 500px ){
  .slider{
    height: 250px
  }
}
@media screen and ( max-width: 400px ){
  .slider{
    height: 220px
  }
}
@media screen and ( max-width: 800px ){
  .slider__control{
    width: 40px;
		height: 40px;
		margin-left: -25px;
  }
	.slider__control-line{
    left: 13px;
  }
	.slider__control--right .slider__control-line{
    left: 13px;
  }
}
@media screen and ( max-width: 750px ){
  .slide__inner{
    background-size: cover;
  }
}
@media screen and ( max-width: 700px ){
  .slide__text{
    font-size: 10px;
  }
}
@media screen and ( max-width: 580px ){
  .slider__control{
    margin-left: -20px;
  }
}
@media screen and ( max-width: 420px ){
  .slider__control{
    margin-left: -15px;
  }
	.slider__control--right{
    left: 93%;
  }
}


/* Страница ТАРИФЫ  (index-ti.html)*/
.blur{
  display: none;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
  z-index: 9998;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  width: 100%;
}
.blur.show{
  display: block;
}
/* Обратная связь */
.frm__modal {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.main-feedback{
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  max-width: 700px;
  width: 100%;
  height: auto;
  transition: all .5s ease;
}
.main-feedback.show{
  transform: translate(-50%, -50%) scale(1);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}
.main-feedback .feedback-footer{
  display: block;
  max-width: 700px;
  height: auto;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0px 0px 40px rgb(0 0 0 / 50%);
}
.main-feedback .feedback-footer .ff-title{
  font-size: 25px;
  color: #4e4e4e;
  font-weight: bold;
  text-align: center;
  margin: 0px auto 10px;
}
.main-feedback .feedback-footer .ff-title{
  font-size: 25px;
  color: #4e4e4e;
  font-weight: bold;
  text-align: center;
  margin: 0px auto 10px;
}
.main-feedback .feedback-footer .ff-subtitle{
  font-weight: bold;
  color: #4e4e4e;
  font-size: 15px;
  text-align: center;
  margin: 0px auto 10px
}
.main-feedback .feedback-footer hr{
  margin: 10px auto;
}
.main-feedback .feedback-footer .ff-params{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  gap: 5px;
  margin-bottom: 10px;
}
.main-feedback .feedback-footer .ff-params p{
  width: 100%;
  text-align: left;
  margin: 0px;
}
.main-feedback .feedback-footer .ff-params .ff-params-input{
  display: none;
}
.main-feedback .feedback-footer .ff-params p span{
  font-weight: bold;
}
.main-feedback .feedback-footer .ff-input{
  width: calc(100% - 20px);
  border-radius: 10px;
  padding: 10px 10px 5px;
  box-sizing: border-box;
  height: 40px;
  font-size: 14px;
  border: none;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 10px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0), 0 0 8px rgba(82, 169, 236, 0);
  outline: none;
  transition: all .5s ease;
}
.main-feedback .feedback-footer .ff-input:focus{
  box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(216, 175, 39);
}

.main-feedback .feedback-footer .ff-input.__error{
  background: #ff000014
}
.main-feedback .feedback-footer textarea{
  max-height: 50px;
  outline: 0;
  background-color: transparent;
  width: 100%;
  color: #4e4e4e;
  border: 2px solid #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 11px 7px;
  font-size: 100%;
  line-height: 1.15;
}

.main-feedback .feedback-footer .ff-btn{
  display: block;
  margin: 0px auto 10px;
  text-align: center;
}
.main-feedback .feedback-footer .ff-btn button{
  padding: 10px 20px;
  text-align: center;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 1em;
  border: 2px solid transparent;
  box-shadow: 1px 1px 12px 0 rgb(0 0 0 / 30%);
  width: 100%;
  max-width: 200px;
  border: none;
  background: #FFC125;
  color: #fff;
  cursor: pointer;
  transition: all .5s ease;
}
.main-feedback .feedback-footer .ff-btn button:hover{
  background: #ff9c1b;
}
.main-feedback .feedback-footer .ff-privacy{
  color: #b7b7b7;
  font-size: 100%;
}
	
/* ТАРИФЫ */
.section-tarifs{
  padding: 25px 0px;
  margin: 10px 0px;
}
.section-tarifs h1{
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: rgb(56 62 69);
  text-align: center;
}
.section-tarifs h1 span{
  font-size: 16px;
  text-transform: none;
  color: #ff9c1b;
  padding-bottom: 2px;
  border-bottom: 1px solid #ff9c1b;
  cursor: pointer;
}
.tarifs-items{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  padding: 15px 0px;
}
.tarifs-items.archive{
  opacity: 0.8;
  user-select: none;
  pointer-events: none;
}
.tarifs-items.none{
  display: none;
}
.tarifs-items .tarif-item{
  box-sizing: border-box;
  width: calc(33.333% - 10px);
  min-width: 310px;
  height: 200px;
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: auto;
  gap: 0px;
  border-radius: 10px;                     
  overflow: hidden;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 34%);
}
.tarifs-items .tarif-item .tarif-item__col{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
}
.tarifs-items .tarif-item .tarif-item__col:first-child{
  background: rgb(56 62 69);
}
.tarifs-items .tarif-item .tarif-item__col:last-child{
  background: rgb(56 62 69 / 63%);
}
/* name */
.tarifs-items .tarif-item .tarif-item__col .ti-name{
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-size: 18px;
}
/* price */
.tarifs-items .tarif-item .tarif-item__col .ti-price{
  color: rgb(175 175 175);
  font-size: 16px;  
}
.tarifs-items .tarif-item .tarif-item__col .ti-price span{
  font-weight: bold;
  color: #fff;
  font-size: 20px;  
}
/* btn */
.tarifs-items .tarif-item .tarif-item__col .ti-btn{
  width: calc(100% - 20px);
  padding: 5px 8px;
  background: #FFC125;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s ease;
}
.tarifs-items .tarif-item .tarif-item__col .ti-btn:hover{
  background: #ff9c1b;
}
/* speed */
.tarifs-items .tarif-item .tarif-item__col .ti-speed{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.tarifs-items .tarif-item .tarif-item__col .ti-speed svg{
  width: 20px;
  height: 20px;
}
.tarifs-items .tarif-item .tarif-item__col .ti-speed svg path{
  fill: rgb(175 175 175);
}
.tarifs-items .tarif-item .tarif-item__col .ti-speed span{
  width: auto;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
/* channel */
.tarifs-items .tarif-item .tarif-item__col .ti-channel{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.tarifs-items .tarif-item .tarif-item__col .ti-channel svg{
  width: 20px;
  height: 20px;
}
.tarifs-items .tarif-item .tarif-item__col .ti-channel svg path{
  fill: rgb(175 175 175);
}
.tarifs-items .tarif-item .tarif-item__col .ti-channel div{
  width: auto;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.tarifs-items .tarif-item .tarif-item__col .ti-channel div span{
  font-weight: bold;
  color: #fff;
}
/* plus */
.tarifs-items .tarif-item .tarif-item__col .ti-plus{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  color: #FFC125;
}
/* more */
.tarifs-items .tarif-item .tarif-item__col .ti-more{
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: all .5s ease;
}
.tarifs-items .tarif-item .tarif-item__col .ti-more:hover{
  color: #FFC125;
}
@media screen and (max-width: 672px) {
  .tarifs-items .tarif-item{
    width: 100%;
  }
}

/* ТАРИФЫ (ETHERNET и ADSL) */
.section-tarifs.internet .internet-items{
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.section-tarifs.internet .internet-items .internet-item{
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  gap: 10px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 10px;                     
  overflow: hidden;
  box-shadow: 0px 0px 5px rgb(0 0 0 / 34%);
  background: rgb(56 62 69);
  padding: 20px;
}
.section-tarifs.internet .internet-items.ethernet .internet-item{
  width: calc(33.333% - 10px);
  min-width: 300px;
}
.section-tarifs.internet .internet-items.adsl .internet-item{
  width: calc(25% - 10px);
  min-width: 290px;
}
.section-tarifs.internet .internet-items .internet-item .title{
  font-weight: bold;
  color: rgb(255, 255, 255);
  font-size: 18px;
}
.section-tarifs.internet .internet-items .internet-item .speed{
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.section-tarifs.internet .internet-items .internet-item .speed svg{
  width: 20px;
  height: 20px;
}
.section-tarifs.internet .internet-items .internet-item .speed svg path{
  fill: rgb(175 175 175);
}
.section-tarifs.internet .internet-items .internet-item .speed span{
  width: auto;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
}
.section-tarifs.internet .internet-items .internet-item .speed span s{
  color: #999;
  font-weight: 500;
}
.section-tarifs.internet .internet-items .internet-item .speed span strong{
  color: #d5d5d5;
  font-size: 19px;
}
.section-tarifs.internet .internet-items .internet-item .price{
  color: rgb(175 175 175);
  font-size: 16px;  
}
.section-tarifs.internet .internet-items .internet-item .price span{
  font-weight: bold;
  color: #fff;
  font-size: 31px;  
}
.section-tarifs.internet .internet-items .internet-item .btn{
  width: calc(100% - 20px);
  padding: 5px 8px;
  background: #FFC125;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s ease;
}
@media screen and (max-width: 650px) {
  .section-tarifs.internet .internet-items .internet-item{
    width: 100% !important;
  }
}