.nunito-sans-regular {
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}
.nunito-sans-extrabold {
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #fafafa;
  user-select: none;
}

.padding100 {
  padding: 120px 0;
}
.big-title {
  font-size: 60px;
}
/* --navbar---------- */
.navbar {
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.075);
}

.log-in-btn {
  border-radius: 888px;
}
/* --------header------- */
.container-header {
  background: url(../images/hero-bg.avif) no-repeat 60% center;
  background-size: cover;
}

/* --- show on desktop/tablet--- */
.template-01 {
  animation: template-01 2s linear infinite alternate;
}

@keyframes template-01 {
  from {
    transform: translateY(-8px);
  }

  to {
    transform: translateY(8px);
  }
}

.template-02 {
  animation: template-02 2s linear infinite alternate;
}

@keyframes template-02 {
  from {
    transform: translateY(8px);
  }

  to {
    transform: translateY(-8px);
  }
}

/* --- show on phone--- */
.template-01-phone {
  position: relative;
  z-index: 1;
}

.template-02-phone {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
/* --- /show on phone--- */
.sign-up-btn {
  background: #000;
  border: none;
  display: inline-block;
  cursor: pointer;
  transform: skew(0deg);
  color: #fff;
  border-radius: 888px;
}

.sign-up-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: rgb(255, 255, 255);
  opacity: 0;
  z-index: -1;
  transition: all 0.5s ease-out;
  border-radius: 888px;
}

.sign-up-btn:hover,
.sign-up-btn:focus {
  color: #007bff;
  box-shadow: none;
}

.sign-up-btn:hover::before {
  left: -1px;
  right: -1px;
  opacity: 1;
}
/* -----------category--------------- */
.container-category {
  padding: 100px 0 76px 0;
}

.category-item a {
  color: #080808;
}

.category-item a:hover {
  color: #007bff;
  text-decoration: none;
  transition: 0.5s ease;
}

.category-item img:hover,
.category-item img:focus {
  box-shadow: 0px 3px 8px rgba(3, 3, 3, 0.3);
  opacity: 0.7;
  transition: 0.5s ease;
}
/* ----------responsive------------- */
.nav-pills .nav-item .nav-link {
  font-size: 14px;
  position: relative;
  margin-bottom: 12px;
}
.nav-pills .nav-item .nav-link.active {
  background: #333;
  font-size: 14px;
  border-radius: 777px;
  color: #ffffff;
}
.responsive-viewer img {
  max-height: 550px;
  width: auto;
  max-width: 100%;
}
/* -------------SEO------------ */
/* ----------components---------- */
.container-components,
.container-responsive {
  background: radial-gradient(
      at 1.5163091389950045% 18.083670715249664%,
      #d1d6f3 0px,
      transparent 50%
    ),
    radial-gradient(
      at 93.90048269085686% 6.81645129849038%,
      #8db0d4 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 98%, #e9e6e1 0px, transparent 50%),
    radial-gradient(
      at 48.25441471613478% 5.674029390542131%,
      #cfe2fa 0px,
      transparent 50%
    ),
    radial-gradient(at 37.550396708786366% 100%, #e9e6e1 0px, transparent 50%),
    radial-gradient(
        at 19.194828092859243% 89.06882591093117%,
        #94b1d7 0px,
        transparent 50%
      )
      #ffffff;
  mix-blend-mode: multiply;
  filter: blur(0);
}

.components-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-around;
}

.components-item {
  width: 120px;
}
/* ---------cta----------------- */
.container-cta {
  background: linear-gradient(rgb(255, 255, 255, 0.9), rgb(255, 255, 255, 0.5)),
    url(../images/bg-cta.avif) no-repeat 60% center;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 18px;
  height: 80vh;
}
/* ----------footer------------ */
.container-footer {
  padding-top: 100px;
}

.contact a {
  color: #030303;
}
.contact a:hover {
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* --------------------------------------- */

@media (max-width: 575.98px) {
  .padding100 {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .header-title {
    text-align: center;
  }
  .big-title {
    font-size: 40px;
  }
  .footer-items {
    text-align: center;
  }

  .contact {
    margin: 20px 0 20px 0;
  }
  .start-btn {
    text-align: center;
  }
  .container-cta {
    text-align: center;
  }
}

@media (max-width: 991.98px) {
}

@media (max-width: 1199.98px) {
}
