@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/static/OpenSans-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/static/OpenSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/static/OpenSans-SemiBold.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/static/OpenSans-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/static/OpenSans-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/static/OpenSans-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/static/OpenSans-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("../fonts/static/OpenSans-SemiBoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/static/OpenSans-BoldItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/static/OpenSans-ExtraBoldItalic.ttf") format("truetype");
}
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #343a40;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

* {
  font-family: "Open Sans", sans-serif;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }
}

.btn {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  height: 56px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn.sign-in {
  background-color: #FFD888;
  border-radius: 15px;
  font-weight: 600;
}
.btn.sign-in:hover {
  color: #dcb567;
  background: none;
  border: 1px solid #dcb567;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  color: #FFD888;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(255, 190.9285714286, 59.5);
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  text-decoration: none;
}
.btn.btn-primary {
  color: #fff;
  background-color: #FFD888;
  border-color: #FFD888;
}
.btn.btn-primary:hover {
  background-color: rgb(255, 199.2857142857, 85);
  border-color: rgb(255, 199.2857142857, 85);
}
.btn.btn-secondary {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn.btn-secondary:hover {
  background-color: rgb(25.5, 25.5, 25.5);
  border-color: rgb(25.5, 25.5, 25.5);
}
.btn.btn-outline {
  color: #FFD888;
  background-color: transparent;
  border-color: #FFD888;
}
.btn.btn-outline:hover {
  color: #fff;
  background-color: #FFD888;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}

body {
  padding-top: 104px;
}

.header {
  background-color: #ffffff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  z-index: 999;
  left: 0;
  top: 0;
}
.header-buttons__btn {
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header-buttons__btn.sign-in {
  background-color: #FFD888;
  border-radius: 15px;
  font-weight: 600;
  margin-left: 25px;
}
.header-buttons__btn.sign-in:hover {
  color: #dcb567;
  background: none;
  border: 1px solid #dcb567;
}
.header-buttons__btn.login {
  text-decoration: none;
  position: relative;
}
.header-buttons__btn.login::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 0;
  height: 2px;
  background-color: #dcb567;
  transition: width 0.3s ease;
}
.header-buttons__btn.login:hover::after {
  width: 52px;
}
.header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5rem;
}
.header .header-wrapper .header-logo {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #343a40;
  text-decoration: none;
  margin-right: 15px;
}
.header .header-wrapper .header-part {
  display: flex;
}
.header .header-wrapper .header-part__logo {
  margin-right: 35px;
}
.header .header-wrapper .header-part__menu > ul {
  display: flex;
  align-items: center;
}
.header .header-wrapper .header-part__menu__item {
  margin-right: 1.5rem;
}
.header .header-wrapper .header-part__menu__item:last-child {
  margin-right: 0;
}
.header .header-wrapper .header-part__menu__link {
  color: #343a40;
  text-decoration: none;
  font-weight: 400;
}
.header .header-wrapper .header-part__menu__link:hover {
  color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.header .header-wrapper .header-menu {
  display: flex;
  list-style: none;
}
.header .header-wrapper .header-menu__item {
  margin-right: 1.5rem;
  position: relative;
}
.header .header-wrapper .header-menu__item i {
  font-size: 12px;
}
.header .header-wrapper .header-menu__item-sub {
  position: absolute;
  opacity: 0;
  z-index: -1;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  padding: 15px;
  border-radius: 15px;
}
.header .header-wrapper .header-menu__item-sub__item {
  margin: 0;
  padding: 5px 0;
}
.header .header-wrapper .header-menu__item-sub__item__link {
  color: #333333;
  text-decoration: none;
}
.header .header-wrapper .header-menu__item-sub__item__link:hover {
  color: rgb(29.1379310345, 32.5, 35.8620689655);
}
.header .header-wrapper .header-menu__item.submenu:hover > .header-menu__item-sub {
  display: block;
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}
.header .header-wrapper .header-menu__link {
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  padding: 8px;
}
.header .header-wrapper .header-menu__link:hover {
  color: #dcb567;
}

@keyframes heroBgWave {
  0% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.hero {
  width: 100%;
  min-height: 750px;
  position: relative;
  margin-bottom: 20px;
}
.hero__bg {
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  animation: heroBgWave 3s ease infinite;
  animation-delay: 0.5s;
  transition: all 0.2s ease;
}
.hero__bg.second {
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  animation: heroBgWave 3s ease infinite;
  animation-delay: 2s;
}
.hero > .container {
  min-height: 850px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  height: 100%;
}
.hero-info {
  position: relative;
}
.hero-info__backimg {
  position: absolute;
  z-index: -1;
}
.hero-info__backimg.laptop {
  top: -110%;
  left: -70%;
  transform: translateX(-50%);
}
.hero-info__backimg.dunk {
  bottom: -100%;
  right: -50%;
  transform: translateX(50%);
}
.hero-info__backimg.shirt {
  top: -50%;
  right: -15%;
  transform: translateX(50%);
}
.hero-info__backimg.graphic {
  bottom: -60%;
  left: -40%;
  transform: translateX(-50%);
}
.hero-info__title {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 17px;
}
.hero-info__subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 43px;
}
.hero-info__image {
  position: absolute;
  top: 0;
  z-index: -1;
  top: 20%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.hero-info__image img {
  max-width: 100%;
  height: auto;
}

@keyframes tickerLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-80%);
  }
}
@keyframes tickerRight {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}
.trust {
  display: block;
  min-height: 500px;
  background-color: #FFD888;
  padding: 30px;
  text-align: center;
  color: #333333;
  position: relative;
  overflow: hidden;
}
.trust__background {
  display: flex;
  z-index: -1;
  margin-bottom: 9px;
  pointer-events: none; /* Prevent clicking or hover */
  user-select: none; /* Prevent selecting the image */
  -webkit-user-drag: none;
}
.trust__background.left {
  animation: tickerLeft 50s linear infinite;
}
.trust__background.right {
  animation: tickerRight 50s linear infinite;
}
.trust__background-wrap {
  position: absolute;
  top: 30px;
  left: 0;
  overflow: hidden;
}
.trust__line {
  display: flex;
  justify-content: space-between;
}
.trust__line-company {
  margin-top: 36px;
  max-width: 274px;
  width: 100%;
  height: 107px;
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 30px 2px #767676;
  z-index: 2;
}
.trust__title {
  font-size: 32px;
  font-weight: 700;
  color: #333333;
  z-index: 2;
}
.trust__subtitle {
  z-index: 2;
  font-size: 20px;
  font-weight: 400;
}

.steps {
  display: block;
  padding: 64px;
}
.steps__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}
.steps__subtitle {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 57px;
}
.steps__button {
  text-align: center;
}
.steps__button > .outline {
  transition: all 0.2s ease;
  background: none;
  border: 1px solid #333333;
}
.steps__line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 65px;
}
.steps__line-arc {
  position: absolute;
  right: -80%;
  top: 20%;
  transform: translateY(-50%);
}
.steps__line-arc.down {
  right: -95%;
  top: 60%;
}
.steps__line-arc.third {
  right: -98%;
}
.steps__line-item {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.steps__line-item__image {
  margin-bottom: 18px;
}
.steps__line-item__title {
  font-weight: 700;
  font-size: 18px;
}

.templates {
  display: block;
  background: url("../img/slider-back.png") no-repeat center center;
  background-size: 100%;
  margin-bottom: 57px;
  padding: 40px 0 60px;
}
.templates__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}
.templates__subtitle {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 57px;
}
.templates__wrapper {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.templates__slider-slide {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  transform: scale(0.9);
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.templates__slider-slide img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.slick-center .templates__slider-slide {
  transform: scale(1.1);
  opacity: 1;
}

.slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  right: 31%;
  margin-left: -31%;
  transform: translate(-50%, -50%);
}
.slick-next.slick-arrow::before {
  background: url("../img/arrow-r.png") no-repeat 25px 20px;
}

.slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: 33.7%;
  margin-right: -33.7%;
  transform: translate(-50%, -50%);
}
.slick-prev.slick-arrow::before {
  background: url("../img/arrow-l.png") no-repeat 22px 20px;
}

.slick-arrow {
  z-index: 99;
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.25);
}
.slick-arrow:hover, .slick-arrow:focus, .slick-arrow:visited {
  background-color: #fff;
}
.slick-arrow::before {
  content: "";
  width: 100%;
  background: #fff;
  display: block;
  height: 100%;
}

.growing {
  margin-bottom: 62px;
}
.growing__title {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 22px;
}
.growing__subtitle {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 57px;
}
.growing__line {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 65px;
}
.growing__line-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.growing__line-background img {
  max-width: 100%;
  height: auto;
  z-index: -1;
}
.growing__line-item {
  width: 29%;
  box-shadow: 0 4px 20px 2px rgba(0, 0, 0, 0.25);
  padding: 31px;
  border-radius: 16px;
  background-color: #fff;
  z-index: 1;
}
.growing__line-item__header {
  display: flex;
  align-items: center;
  gap: 21px;
  margin-bottom: 23px;
}
.growing__line-item__header-name {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.support {
  background-color: #FAFAFA;
  padding: 52px 0;
}
.support__info {
  max-width: 550px;
}
.support__info-wrap__item {
  display: flex;
  gap: 23px;
}
.support__info-wrap__item-text {
  font-size: 18px;
}
.support__info-wrap__item-text strong {
  font-size: 20px;
  font-weight: 700;
}
.support__info-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}
.support__wrapper {
  display: flex;
  justify-content: space-between;
  align-content: center;
}

.ending {
  text-align: center;
  padding: 75px 0;
}
.ending__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
.ending__description {
  font-size: 20px;
  margin-bottom: 38px;
}

.footer {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  padding: 26px 0;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.footer__copyright {
  float: right;
  font-size: 12px;
  margin-right: 8px;
}
.footer__menu-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px 0 8px;
}
.footer__menu-title.logo img {
  height: 30px;
}
.footer__menu ul li a {
  text-decoration: none;
  font-size: 14px;
  color: #333333;
  padding: 8px;
}
.footer__menu ul li a:hover {
  text-decoration: underline;
}

/* LOGIN FORM */
.login.section {
  max-width: 490px;
  width: 100%;
}
.login__logo img {
  height: 30px;
  margin-bottom: 20px;
}
.login__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2px;
}
.login__subtitle {
  font-size: 14px;
  font-weight: 550;
  color: #616161;
}
.login__label {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  color: #333333;
}
.login__input {
  border-radius: 8px;
  padding: 16px;
  height: 48px;
  border: 1px solid #333;
  outline: none;
}
.login__form {
  background-color: #ffffff;
  padding: 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
}
.login__button {
  display: block;
  width: 100%;
  background-color: #ffd888;
  border-radius: 15px;
  font-weight: 600;
  color: #333;
  height: 40px;
  margin-top: 18px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.login__button:hover {
  background-color: #fff;
  color: #ffd888;
  border: 1px solid #ffd888;
}
.login__link {
  text-align: left;
  color: #333;
}
.login__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

/*# sourceMappingURL=main.css.map */
