* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
div {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}
.none {
  display: none;
}
.container {
  margin: 0 auto;
  padding: 0 14px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.column__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.relative {
  position: relative;
}
.section-title {
  color: #50e3a4;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  text-align: center;
}
.section-heading {
  color: #50e3a4;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
.section-header {
  color: #2e2e2e;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .section-header {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  .section-header {
    font-size: 48px;
  }
}
.header {
  position: relative;
  min-height: 100vh;
  color: white;
  background-color: #5b6266;
  background-image: url(../image/header/head-bg-tab.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .header {
    height: 568px;
    min-height: auto;
    background-color: #5b6266;
  }
}
@media (min-width: 1200px) {
  .header {
    height: 870px;
    background-image: url(../image/header/header_bg-min.jpg);
  }
}
.header::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 93px;
  padding-bottom: 65px;
  position: relative;
  z-index: 9;
  top: 0;
  left: 0;
  max-width: 100%;
}
@media (min-width: 768px) {
  .header__content {
    padding-top: 65px;
    min-height: 569px;
    padding-bottom: 79px;
  }
}
@media (min-width: 1200px) {
  .header__content {
    padding-top: 17px;
    padding-bottom: 35px;
    min-height: auto;
  }
}
.header__logo {
  position: relative;
  right: -10px;
  margin-bottom: 17px;
  text-align: center;
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 12.4px;
  line-height: 1;
}
@media (min-width: 768px) {
  .header__logo {
    font-size: 82px;
    letter-spacing: 16.4px;
    margin-bottom: 14px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    font-size: 96px;
    letter-spacing: 19.2px;
    margin-bottom: 54px;
  }
}
.header__desc {
  margin-bottom: 35px;
  max-width: 281px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 520px) {
  .header__desc {
    max-width: 490px;
  }
}
@media (min-width: 768px) {
  .header__desc {
    max-width: 566px;
    margin-bottom: 69px;
  }
}
@media (min-width: 1200px) {
  .header__desc {
    margin-bottom: 82px;
    font-size: 20px;
    font-weight: 700;
    max-width: 726px;
    line-height: 1.5;
  }
}
.unit {
  letter-spacing: 1.6px;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .unit {
    font-weight: 700;
    letter-spacing: 2px;
  }
}
.header__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 520px) {
  .header__form {
    width: 490px;
  }
}
@media (min-width: 768px) {
  .header__form {
    flex-direction: row;
    width: auto;
  }
}
.header__form-input {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .header__form-input {
    width: 200px;
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.header__form-submit .button-submit {
  width: 100%;
  text-align: center;
}
.input {
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-radius: 30px;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  transition: background-color 0.2s ease-in;
}
.input::placeholder {
  color: white;
}
.input:focus {
  outline: none;
  background-color: rgba(0, 0, 0, 0.7);
}
.button-submit {
  padding: 0 30px;
  height: 60px;
  border-radius: 30px;
  border: none;
  background-color: #50e3a4;
  cursor: pointer;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 2.86;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-family: 'Montserrat', sans-serif;
  transition: background-color 0.2s ease-in;
}
.button-submit:hover,
.button-submit:focus {
  outline: none;
  background-color: #1cb171;
}
.header__scroll {
  display: none;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-17px);
  width: 32px;
  height: 48px;
  transition: 0.2s ease-in;
}
@media (min-width: 1200px) {
  .header__scroll {
    display: inline-block;
  }
}
.header__scroll::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transition: border 0.2s ease-in;
}
.header__scroll:hover::before {
  border: 2px solid #e35050;
}
.header__top-button {
  width: 100%;
  position: absolute;
  top: 0;
}
.header__nav-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s ease-in;
  cursor: pointer;
}
.header__nav-button:hover,
.header__nav-button:focus {
  outline: none;
  border: 1px solid #e35050;
  background-color: rgba(102, 102, 102, 0.5);
}
@media (min-width: 768px) {
  .header__nav-button {
    right: auto;
    top: 20px;
    left: 20px;
  }
}
@media (min-width: 1200px) {
  .header__nav-button {
    top: 60px;
    left: 69px;
  }
}
.header__search-button {
  display: none;
}
@media (min-width: 768px) {
  .header__search-button {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.2s ease-in;
    cursor: pointer;
  }
  .header__search-button:hover,
  .header__search-button:focus {
    outline: none;
    border: 1px solid #e35050;
    background-color: rgba(102, 102, 102, 0.5);
  }
}
@media (min-width: 1200px) {
  .header__search-button {
    top: 60px;
    right: 69px;
  }
}
.section-functional {
  padding: 75px 0 75px;
}
@media (min-width: 768px) {
  .section-functional {
    padding: 73px 0 91px;
  }
}
@media (min-width: 1200px) {
  .section-functional {
    padding: 107px 0 64px;
    background-image: url(../image/BG-font.svg);
    background-repeat: no-repeat;
    background-position: 0 96px;
    background-size: auto;
  }
}
.section-functional__title {
  text-align: center;
  margin-bottom: 37px;
}
@media (min-width: 768px) {
  .section-functional__title {
    margin-bottom: 28px;
  }
}
@media (min-width: 1200px) {
  .section-functional__title {
    margin-bottom: 72px;
  }
}
.section-functional__header {
  text-align: center;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .section-functional__header {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .section-functional__header {
    margin-bottom: 85px;
  }
}
.section-functional__benefits > * {
  max-width: 100%;
  padding: 0 8px;
  margin-bottom: 54px;
}
.section-functional__benefits > *:last-child {
  margin-bottom: 0;
}
@media (min-width: 520px) {
  .section-functional__benefits > * {
    width: 520px;
    max-width: auto;
  }
}
@media (min-width: 768px) {
  .section-functional__benefits > * {
    padding: 0 16px;
    margin-bottom: 26px;
    max-width: unset;
    width: calc(50% - 16px);
    margin-right: 32px;
  }
  .section-functional__benefits > *:nth-child(2),
  .section-functional__benefits > *:nth-child(4) {
    margin-right: 0;
  }
  .section-functional__benefits > *:last-child,
  .section-functional__benefits > *:nth-child(3) {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .section-functional__benefits > * {
    width: 270px;
    padding: 0 20px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .section-functional__benefits > *:nth-child(2) {
    margin-right: 30px;
  }
  .section-functional__benefits > *:last-child {
    margin-right: 0;
  }
}
.section-functional__benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .section-functional__benefits {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: unset;
  }
}
@media (min-width: 768px) {
  .benefit .benefit-img-bottom {
    margin-bottom: 6px;
  }
}
@media (min-width: 1200px) {
  .benefit .benefit-img-bottom {
    margin-bottom: 27px;
  }
}
.benefit {
  text-align: center;
}
.benefit-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .benefit-img {
    height: 100px;
    margin-bottom: 22px;
  }
}
@media (min-width: 1200px) {
  .benefit-img {
    height: 100px;
    margin-bottom: 27px;
  }
}
.benefit-img img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
.benefit-title {
  color: #2e2e2e;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .benefit-title {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .benefit-title {
    margin-bottom: 26px;
  }
}
.benefit-description {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}
@media (min-width: 1200px) {
  .benefit-description {
    line-height: 2.14;
  }
}
.cta-section {
  padding: 70px 0 75px;
  position: relative;
  background-color: #0e3504;
  background-image: url(../image/cta-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 72px 0 80px;
  }
}
@media (min-width: 1200px) {
  .cta-section {
    padding: 87px 0 88px;
  }
}
.cta-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 130, 78, 0.7);
}
.cta-section__center {
  position: relative;
  text-align: center;
}
.cta-section__header {
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: white;
}
@media (min-width: 768px) {
  .cta-section__header {
    margin-bottom: 51px;
  }
}
@media (min-width: 1200px) {
  .cta-section__header {
    margin-bottom: 43px;
  }
}
span {
  font-weight: 700;
  letter-spacing: 2.2px;
}
.cta-section__btn {
  display: inline-block;
  padding: 20px 45px;
  border-radius: 50px;
  background-color: #fff;
  text-decoration: none;
  border: 1px solid #2bb279;
  transition: background-color 0.2s ease-in;
  transition: box-shadow 0.2s ease-in;
  transition: 0.4s ease-in;
  color: #2bb279;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.8px;
}
.cta-section__btn:hover {
  color: #1b4835;
  box-shadow: 0 0 20px #000000;
}
.section-management {
  padding: 70px 0 44px;
  border-bottom: 1px solid #bdbdbd;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: white;
}
@media (min-width: 768px) {
  .section-management {
    padding: 62px 0 42px;
    text-align: start;
    position: unset;
    z-index: unset;
    background-color: unset;
  }
}
@media (min-width: 1200px) {
  .section-management {
    padding: 91px 0 70px;
    position: relative;
  }
  .section-management::before {
    content: "";
    display: block;
    width: 187px;
    height: 187px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-68%, -63%) rotate(45deg);
    background-color: #a4eecb;
  }
}
.section-management_row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .section-management_row {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px 0 38px;
  }
}
@media (min-width: 1200px) {
  .section-management_row {
    padding: 0 157px 0 97px;
  }
}
.section-management_row p {
  line-height: 1.7;
}
@media (min-width: 768px) {
  .section-management_row p {
    line-height: 2.143;
  }
}
@media (min-width: 1200px) {
  .section-management_row p {
    line-height: 2.2;
  }
}
.section-management_row .section-column {
  padding: 0;
  width: 300px;
  margin-bottom: 57px;
}
@media (min-width: 520px) {
  .section-management_row .section-column {
    width: 520px;
  }
}
@media (min-width: 768px) {
  .section-management_row .section-column {
    margin-bottom: 0;
    padding-bottom: 72px;
    width: 382px;
    order: 2;
  }
}
@media (min-width: 1200px) {
  .section-management_row .section-column {
    order: 1;
    padding-bottom: 0;
    width: 470px;
  }
}
.section-management__header {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .section-management__header {
    margin-bottom: 17px;
  }
}
@media (min-width: 1200px) {
  .section-management__header {
    margin-bottom: 46px;
  }
}
.section-management-img {
  width: 200px;
}
.section-management-img img {
  width: 100%;
  height: auto;
}
@media (min-width: 520px) {
  .section-management-img {
    width: 268px;
  }
}
@media (min-width: 768px) {
  .section-management-img {
    order: 1;
  }
}
@media (min-width: 1200px) {
  .section-management-img {
    order: 2;
    width: auto;
  }
}
.section-management_row .section-heading {
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .section-management_row .section-heading {
    margin-bottom: 29px;
  }
}
@media (min-width: 1200px) {
  .section-management_row .section-heading {
    margin-bottom: 31px;
  }
}
.section-focus {
  padding-top: 69px;
  padding-bottom: 108px;
  position: relative;
}
.section-focus::before {
  content: "";
  display: block;
  width: 187px;
  height: 187px;
  position: absolute;
  top: 0%;
  right: 50%;
  transform: translate(52%, -95%) rotate(45deg);
  background-color: #a4eecb;
  z-index: -2;
}
@media (min-width: 768px) {
  .section-focus {
    padding-top: 58px;
    padding-bottom: 136px;
  }
  .section-focus::before {
    content: "";
    display: none;
  }
}
@media (min-width: 1200px) {
  .section-focus {
    padding-top: 35px;
    padding-bottom: 101px;
  }
  .section-focus::before {
    content: "";
    display: block;
    top: 50%;
    right: 0;
    transform: translate(70%, -62%) rotate(45deg);
    z-index: unset;
  }
}
.section-focus-row {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .section-focus-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.section-focus__header {
  margin-bottom: 34px;
}
@media (min-width: 768px) {
  .section-focus__header {
    margin-bottom: 16px;
  }
}
@media (min-width: 1200px) {
  .section-focus__header {
    margin-bottom: 45px;
  }
}
.section-focus-img-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  order: 2;
}
@media (min-width: 768px) {
  .section-focus-img-wrapper {
    width: 289px;
    height: 369px;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .section-focus-img-wrapper {
    width: 470px;
    height: 631px;
  }
}
.section-focus-img {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 291px;
}
@media (min-width: 768px) {
  .section-focus-img {
    max-width: 650px;
  }
}
@media (min-width: 1200px) {
  .section-focus-img {
    max-width: unset;
  }
}
.section-focus-row .section-column {
  order: 1;
  text-align: center;
  margin-bottom: 57px;
}
@media (min-width: 768px) {
  .section-focus-row .section-column {
    max-width: 403px;
    order: unset;
    text-align: start;
    margin-bottom: 0;
    order: 2;
  }
}
@media (min-width: 1200px) {
  .section-focus-row .section-column {
    max-width: 475px;
  }
}
.section-focus-row .section-heading {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-focus-row .section-heading {
    margin-bottom: 32px;
  }
}
.section-focus-row p {
  line-height: 1.7;
}
@media (min-width: 768px) {
  .section-focus-row p {
    line-height: 2.2;
  }
}
@media (min-width: 768px) {
  .section-focus-row .benefit-description {
    width: 385px;
  }
}
@media (min-width: 1200px) {
  .section-focus-row .benefit-description {
    width: 385px;
  }
}
.section-price {
  position: relative;
  padding: 72px 0 80px;
  background-color: #50e3a4;
}
@media (min-width: 768px) {
  .section-price {
    padding: 71px 0 84px;
    background-image: url(../image/bcg-img-price/bcg-img-price.jpg);
  }
  .section-price::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
@media (min-width: 1200px) {
  .section-price {
    padding: 102px 0 93px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
}
.section-price__cell-header h3,
.section-price__cell-title h2 {
  color: white;
}
.section-price__cell-header {
  margin-bottom: 41px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-price__cell-header {
    margin-bottom: 62px;
  }
}
@media (min-width: 1200px) {
  .section-price__cell-header {
    margin-bottom: 75px;
  }
}
.section-price__cell-title .section-title {
  margin-bottom: 0;
  line-height: 1.5;
}
.section-price__cell-title {
  margin-bottom: 31px;
}
@media (min-width: 768px) {
  .section-price__cell-title {
    margin-bottom: 27px;
  }
}
@media (min-width: 1200px) {
  .section-price__cell-title {
    margin-bottom: 68px;
  }
}
.container-relative {
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .section-price-row {
    display: flex;
    justify-content: center;
  }
}
.section-price__block {
  width: 290px;
  padding: 34px 0 38px;
  margin-right: 30px;
  border-radius: 8px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.75);
  color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-price__block {
    width: 303px;
    padding: 38px 0;
    margin-bottom: 0;
  }
}
.section-price__block:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.price-block__hover {
  transition: background 0.3s ease-in;
}
.price-block__hover:hover {
  background-color: #3250f7;
  box-shadow: 0 0 25px #ffffffd9;
}
.price-block__hover:hover .btn-select {
  background-color: #ffffff;
  color: #666666;
}
.price-block_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 29px;
}
@media (min-width: 768px) {
  .price-block_top {
    padding-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .price-block_top {
    padding-bottom: 29px;
  }
}
.block-items {
  margin-top: 33px;
  padding-left: 0;
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}
.block-items li {
  margin-bottom: 11px;
}
@media (min-width: 768px) {
  .block-items li {
    margin-bottom: 11px;
  }
}
@media (min-width: 1200px) {
  .block-items li {
    margin-bottom: 20px;
  }
}
.block-items li:last-child {
  margin-bottom: 0;
  margin-bottom: 36px;
}
.section-price_title {
  margin-bottom: 13px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  color: #b3b3b3;
}
.section-price_price {
  margin-bottom: 27px;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
}
.section-price_month {
  display: inline-block;
  padding: 5px 11px 6px 18px ;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  line-height: 1.3;
}
.for-GB {
  font-weight: 400;
  letter-spacing: 0.5px;
}
.btn-select {
  padding: 17px 31px 18px 31px;
  border-radius: 50px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.008);
  cursor: pointer;
  transition: background 0.3s ease-in;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-family: 'Montserrat', sans-serif;
}
.section-clients {
  padding: 73px 0 143px;
  background-image: url("../image/bgc-head-test-l/bg-client.svg");
  background-repeat: no-repeat;
  background-position: 59px 153px;
  background-size: auto;
}
.section-clients br {
  display: none;
}
@media (min-width: 768px) {
  .section-clients {
    padding: 73px 0 74px;
  }
}
@media (min-width: 1200px) {
  .section-clients {
    padding: 100px 0 85px;
  }
  .section-clients br {
    display: block;
  }
}
.section-clients__heading {
  text-align: center;
  margin-bottom: 32px;
}
.section-clients__heading h2 {
  font-size: 16px;
}
@media (min-width: 768px) {
  .section-clients__heading {
    margin-bottom: 20px;
  }
}
@media (min-width: 1200px) {
  .section-clients__heading {
    margin-bottom: 71px;
  }
  .section-clients__heading h2 {
    font-size: 14px;
  }
}
.section-clients__header {
  text-align: center;
  margin-bottom: 33px;
}
@media (min-width: 768px) {
  .section-clients__header {
    margin-bottom: 64px;
  }
}
@media (min-width: 1200px) {
  .section-clients__header {
    margin-bottom: 82px;
  }
}
.section-carousel {
  margin: 0 auto;
  position: relative;
}
.testimonial_text {
  width: 275px;
  margin-bottom: 45px;
  text-align: center;
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 8px;
}
.testimonial_text p {
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .testimonial_text {
    width: 470px;
    margin-bottom: 16px;
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  .testimonial_text {
    width: 770px;
    margin-bottom: 45px;
    font-size: 18px;
  }
}
.testimonial_user {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .testimonial_user {
    flex-direction: row;
  }
}
.testimonial_user-name {
  color: #808080;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 21px;
}
@media (min-width: 768px) {
  .testimonial_user-name {
    margin-top: 23px;
  }
}
@media (min-width: 1200px) {
  .testimonial_user-name {
    margin-top: 0;
  }
}
.testimonial_user-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
}
.testimonial_user-img img {
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
@media (min-width: 768px) {
  .testimonial_user-img {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .testimonial_user-img {
    margin-right: 40px;
  }
}
.clients-carousel.owl-carousel .owl-nav button.owl-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 100px;
  transform: translate(-46%, 133%);
  background-image: url("../image/bgc-head-test-l/icon/button-arrow_left.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity 0.2s ease-in;
  outline: none;
}
.clients-carousel.owl-carousel .owl-nav button.owl-prev:hover {
  border: 1px solid #a7a5a5;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .clients-carousel.owl-carousel .owl-nav button.owl-prev {
    top: 0;
    left: -40px;
    transform: translate(-100%, 15px);
  }
}
@media (min-width: 1200px) {
  .clients-carousel.owl-carousel .owl-nav button.owl-prev {
    left: -40px;
  }
}
.clients-carousel.owl-carousel .owl-nav button.owl-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 100px;
  transform: translate(58%, 133%);
  background-image: url("../image/bgc-head-test-l/icon/button-arrow_right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: opacity 0.2s ease-in;
  outline: none;
}
.clients-carousel.owl-carousel .owl-nav button.owl-next:hover {
  border: 1px solid #a7a5a5;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .clients-carousel.owl-carousel .owl-nav button.owl-next {
    right: -85px;
    top: 0;
    transform: translate(100%, 15px);
  }
}
@media (min-width: 1200px) {
  .clients-carousel.owl-carousel .owl-nav button.owl-next {
    right: -40px;
  }
}
.footer {
  padding: 58px 0 55px;
  background-color: #1a1a1a;
}
@media (min-width: 768px) {
  .footer {
    padding: 61px 0 67px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 80px 0 67px;
  }
}
.footer-nav__social {
  display: flex;
}
.footer-nav-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-nav-block {
    flex-direction: column;
    margin-bottom: 48px;
  }
}
@media (min-width: 1200px) {
  .footer-nav-block {
    flex-direction: row;
    justify-content: center;
  }
}
.footer-nav__list {
  text-align: center;
  list-style-type: none;
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 3.2px;
  line-height: 1;
}
.footer-nav__list a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  margin-right: 0;
  margin-bottom: 28px;
}
.footer-nav__list a:first-child {
  margin-bottom: 29px;
}
.footer-nav__list a:last-child {
  margin-right: 0;
}
.footer-nav__list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  border-bottom: 1px solid #ffffff;
  transition: 0.4s ease-in;
}
.footer-nav__list a:hover::after {
  width: 100%;
}
@media (min-width: 768px) {
  .footer-nav__list {
    display: flex;
    margin-right: 0;
    margin-bottom: 52px;
  }
  .footer-nav__list a {
    margin-right: 37px;
    margin-bottom: 0;
  }
  .footer-nav__list a:last-child {
    margin-right: -9px;
  }
  .footer-nav__list a:first-child {
    margin-right: 39px;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .footer-nav__list {
    margin-bottom: 0;
    margin-right: 34px;
  }
}
.footer-nav__social img {
  vertical-align: middle;
}
.footer-nav__social-linc {
  position: relative;
  display: flex;
  display: block;
  margin-right: 21px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  z-index: 3;
  line-height: 48px;
  text-align: center;
  text-decoration: none;
}
.footer-nav__social-linc:last-child {
  margin-right: 0;
}
.footer-nav__social-linc:hover::after {
  transition: 0.2s ease-in;
  background-color: rgba(255, 255, 255, 0.433);
  box-shadow: inset 0px 0px 20px 5px rgba(0, 0, 0, 0.871);
}
.footer-nav__social-linc:hover {
  box-shadow: 0 0 20px #ffffff2c;
  border: 1px solid white;
  line-height: 46px;
}
@media (min-width: 768px) {
  .footer-nav__social-linc {
    margin-right: 32px;
  }
}
.footer-nav__social-linc::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  background-color: #313131;
  z-index: -1;
}
.footer-copyright {
  text-align: center;
}
.footer-copyright p {
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
}
.footer-copyright span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
@media (min-width: 768px) {
  .footer-copyright p {
    width: 210px;
  }
}
@media (min-width: 1200px) {
  .footer-copyright p {
    width: unset;
    margin-left: unset;
    margin-right: unset;
  }
}
/*# sourceMappingURL=main.css.map */