.product{
  padding: 100px 0 12px;
  color: #6E6F86;;
}

.product__image-outer{
  position: relative;
  float: left;
}
.product__image-wrap{
  display: block;
  max-width: 550px;
  border-radius: 56px;
  overflow: hidden;
  margin-right: 40px;
  margin-bottom: 20px;
}

#fancybox-img{
  background-color: #ffffff;
}
.product__sign{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 48px;
  height: 48px;
  right: 60px;
  top: 24px;
  transition: box-shadow 0.3s;
  box-shadow: 0px 0px 9px 5px transparent
}
.product__sign:hover{
  box-shadow: 0px 0px 9px 5px rgba( 0, 140, 149, 0.4);
}

.product__image-wrap img{
  width: 100%;
  height: auto;
}

.products__logos{
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.products__logo{
  width: 100%;
  max-width: 101px;
  height: 48px;
  background-color: rgba( 0, 140, 149, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
}

.products__logo img {
  width: 90%;
  height: auto;
}
.others{
  position: relative;
  padding-bottom: 150px;
  padding-top: 36px;
  overflow: hidden;
}

.others__nav{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3DB3DE;
  border: 1px solid #3DB3DE;
  transition: all 0.3s ease-in;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  box-shadow: 0px 0px 9px 5px transparent
}
.others__nav:not(.swiper-button-disabled):hover{
  box-shadow: 0px 0px 9px 5px rgba(12, 220, 235, 0.4);
}

.others__navigation{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 136px;
}

.others__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 48px;
  border-top: 1px solid #6E6F86;
}

.others__title{
  text-align: left;
  margin-left: 0;
  font-size: 44px;
  line-height: 48px;
}

.others__slider.swiper {
  overflow: visible;
  margin-top: 72px;
}
.others__slider-wrap {
  width: 400px;
}
.others__slide-wrap {
  display: block;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(220, 197, 177) 100%);
  border-radius: 50%;
  overflow: hidden;
  transition: border-radius 0.3s;
}
.others__slide-wrap img {
  width: 110%;
  height: auto;
}
.others__slide-wrap:hover {
  border-radius: 25%;
}
.others__slide-wrap:hover .others__link {
  opacity: 1;
  pointer-events: auto;
}
.others__slide-wrap:hover svg {
  transform: translateX(5px);
}
.others__outer {
  position: relative;
  width: fit-content;
}
.others__link {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000000;
  padding: 17px 60px;
  font-size: 18px;
  line-height: 30px;
  transform: translateX(-50%);
  border-radius: 42px;
  text-decoration: none;
  transition: opacity 0.4s;
  opacity: 0;
  pointer-events: none;
}
.swiper-button-disabled {
  cursor: not-allowed;
  background-color: #fff;
  border-color: #008C95;
}
.swiper-button-disabled path{
  fill: #008C95;
}

.others__link svg {
  margin-left: 16px;
  bottom: 40px;
  transition: transform 0.3s;
}


h2 {
  font-size: 44px;
  line-height: 48px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

h3 {
  padding-top: 16px;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
}
h2, h3, h4 {
  color: #00313C;
}
h4{
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
}
p {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 22px;
}

ul, ol{
  margin-bottom: 24px;
}

li ~ li {
  margin-top: 12px;
}
ul {
  padding: 0;
}
ul li {
  padding-left: 20px;
  position: relative;
  list-style-type: none;
  font-size: 18px;
  line-height: 24px;
 }
ul li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #008C95;
  content: "";
 }

ol{
  counter-reset: myCounter;
  padding: 0;
}

ol li{
  padding-left: 20px;
  list-style: none;
  line-height: 20px;
  margin: 0 0 8px 0;
  position: relative;
  font-size: 18px;
  line-height: 24px;
}

ol li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: myCounter;
  content: counter(myCounter);
  color: #008C95;
  display: inline-block;
  text-align: center;
  line-height: normal;
  font-weight: 500;
}

b{
  font-weight: 500;
}

em{
  font-style: normal;
  color: #008C95;
}


@media (max-width:768px) {
  .others{padding-bottom: 64px;}
  .others__slider.swiper{
    margin-top: 30px;
  }
  .others__top{
    padding-top: 25px;
  }
  .others__link {
    display: none;
  }
  .others__title{
    font-size: 22px;
    line-height: 40px;
  }
  .others__slide-wrap{
    border-radius: 25%;
    width: 140px;
    height: 140px;
  }
  .others__navigation{
    display: none;
  }
  .product {
    padding-top: 75px;
  }
  .product__sign{
    right: 25px;
  }
  .product__image-wrap{
    margin-right: 0;
    border-radius: 0;
  }

  h2{
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 24px;
  }
  ol li,
  ul li {
    font-size: 16px;
    line-height: 22px;
  }
  h3{
    padding-top: 8px;
    font-size: 20px;
    line-height: 22px;
  }
}

