﻿@charset "utf-8";

/* btn */
.btn {
  position: relative;
  height: auto;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.btn-link {
  padding: 20px 47px 20px 17px;
  display: inline-block;
  position: relative;
  border-radius: 50em;
  background-image: linear-gradient(#F47089, #E64161);
  box-shadow: 5px 5px 30px rgba(82, 92, 93, 0.6);
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.45;
  transition: all 0.3s ease;
}

.btn-link-big {
  padding-left: 60px;
  padding-right: 90px;
}

.btn-link-white {
  padding: 20px 45px;
  border: 2px solid #000;
  color: #000;
  background-image: none;
  background: #fff;
}

.btn-link-orange {
  padding: 20px 45px;
  border: 2px solid #F87C00;
  color: #fff;
  background-image: none;
  background: #F87C00;
}

.btn-link::before {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../../img/lp/web-consulting/icon_btn.svg);
}

.btn-link-white::before,
.btn-link-orange::before {
  display: none;
  content: none;
}

.btn-link:hover {
  text-decoration: none;
  background-size: 25px;
  box-shadow: 2px 2px 15px rgba(82, 92, 93, 0.6);
}

.btn::before {
  content: none;
}

.cta-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: none;
}

@media screen and (max-width: 768px) {
  .btn-link {
    font-size: 15px;
  }

  .btn-link-big {
    padding-left: 30px;
    padding-right: 60px;
  }

  .cta-btn-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}

/* title */
.title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  color: #0D3339;
}

.title-color {
  color: #17A4B4;
}

.title-sub {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 17px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 24px;
  }

  .title-sub {
    font-size: 14px;
  }
}
