@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.2;
  font-family: "Poppins", sans-serif;
  background-color: #151515;
  color: #ffffff;
  font-weight: 400;
  font-size: 20px;
  overflow: hidden;
}

h1,
h2 {
  font-weight: 700;
  font-size: 70px;
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
}

button {
  line-height: 1.2;
  font-size: 17px;
  border: none;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.gradient {
  background: linear-gradient(-223deg, #ff0000 0%, #600000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.menu {
  position: absolute;

  display: none;
}
.menu-img {
  width: 20px;
  height: 20px;
}

.mobile .header-nav {
  display: flex;
}

/* HEADER */

.header {
  position: relative;
  margin-top: 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
}

.logo-img {
  width: 250px;
}

.logo {
  font-weight: 700;
  font-size: 35px;
}

.header-nav {
  display: flex;
  justify-content: space-between;
  width: 70%;
  align-items: center;
}

.header-activ {
  text-align: center;
}

.header-link {
  color: #ff0000;
  transition: 0.3s;
  text-align: center;
}

.header-link:hover {
  color: #ffffff;
}

.header-btn {
  text-align: center;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(-223deg, #ff0000 0%, #600000 100%);
  color: #ffffff;
  transition: transform 0.3s;
}

.header-btn:hover {
  transform: scale(1.1);
}

/* WELCOME */

.welcome {
  margin-top: 150px;
}

.welcome .container {
  display: flex;
  justify-content: space-between;
}

.welcome-title-wrapper::before {
  content: "";
  display: block;
  width: 140px;
  height: 140px;
  position: absolute;
  z-index: -5;
  left: 100px;
  top: 210px;

  border-radius: 100%;
  background: linear-gradient(
    245deg,
    rgba(114, 35, 35, 0.55) 0%,
    rgba(255, 0, 0, 0.73) 51.85%
  );
  filter: blur(90px);
}

.welcome-title {
  width: 700px;
}

.welcome-imgs-wrapper {
  width: 650px;
  position: relative;
}

.welcome-imgs-wrapper::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: -5;
  left: 250px;
  top: 10px;

  border-radius: 100%;
  background: linear-gradient(
    245deg,
    rgba(114, 35, 35, 0.726) 0%,
    rgba(255, 0, 0, 0.849) 51.85%
  );
  filter: blur(90px);
}

.basketball {
  position: absolute;
  width: 300px;
  left: 20px;
  bottom: -120px;
  animation: basket 5s infinite ease-in-out;
}

.hockey {
  position: absolute;
  width: 180px;
  left: 300px;
  bottom: -150px;
  animation: hock 3s infinite ease-in-out;
}

.football {
  position: absolute;
  width: 250px;
  right: 20px;
  bottom: -10px;
  animation: foot 4s infinite ease-in-out;
}

@keyframes basket {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(-20px, -20px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes hock {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(0px, -20px);
  }

  100% {
    transform: translate(0);
  }
}

@keyframes foot {
  0% {
    transform: translate(0);
  }
  50% {
    transform: translate(20px, -20px);
  }

  100% {
    transform: translate(0);
  }
}

/* BENEFITS */

.benefits {
  margin-top: 210px;
}

.benefits-container {
  padding-top: 50px;
  padding-bottom: 20px;
  max-width: 1030px;
  border-radius: 45px;
  display: flex;
  justify-content: space-around;
  position: relative;
  background: #ffffff;
}

.benefits-container::before {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: -5;
  left: 0px;
  top: 40px;

  border-radius: 100%;
  background: linear-gradient(
    245deg,
    rgba(114, 35, 35, 0.795) 0%,
    rgba(255, 0, 0, 0.73) 51.85%
  );
  filter: blur(90px);
}

.benefits-container::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 20px;
  background-image: url("/imgs/star.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);

  font-weight: 700;
  font-size: 50px;

  text-align: center;
  color: #fff;
}

.benefits-item {
  max-width: 220px;
  text-align: center;
}

.benefits-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.benefits-img-wrapper::before {
  content: "";
  display: block;
  width: 150px;
  height: 150px;

  border-radius: 100%;
  background: linear-gradient(245deg, #600000 0%, #ff0000 100%);
  box-shadow: 0 4px 41px 0 rgba(0, 0, 0, 0.39);
}

.benefits-icon {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.benefits-title {
  font-weight: 500;
  font-size: 25px;
  color: #121517;
  margin-bottom: 15px;
}

.benefits-icon-1 {
  top: calc(50% + -5px);
  left: calc(50% + 2px);
}

.benefits-icon-2 {
  width: 90px;
  top: calc(50% + 7px);
  left: calc(50% + 0px);
}

.benefits-icon-3 {
  width: 100px;
  left: calc(50% + -4px);
}

/* BRENDS */

.brends {
  margin-top: 100px;
}

.brends-ithem {
  border-style: solid;
  border-width: 3px;
  border-color: #ff0000;
  padding: 25px 25px;
  border-radius: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
}

.brend-logo {
  width: 200px;
}

.brend-title {
  width: 400px;
  text-align: center;
  font-size: 50px;
}

.rating {
  width: 150px;
}

.brends .header-btn {
  font-size: 25px;
}

/* LISENSE */

.lisense {
  margin-top: 150px;
}

.lisense .container {
  display: flex;
  justify-content: space-between;
}

.lisense-wrapper {
  width: 800px;
  position: relative;
}

.lisense-title-wrapper::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: -5;
  left: 0px;
  top: 70px;

  border-radius: 100%;
  background: linear-gradient(
    245deg,
    rgba(114, 35, 35, 0.795) 0%,
    rgba(255, 0, 0, 0.73) 51.85%
  );
  filter: blur(90px);
}

.lisense-desc {
  margin-top: 50px;
  font-size: 25px;
  font-weight: 200;
}

/* TEXT */

.text {
  margin-top: 100px;
  position: relative;
  margin-bottom: 100px;
}

.text-title-wrapper::before {
  content: "";
  display: block;
  width: 180px;
  height: 180px;
  position: absolute;
  z-index: -5;
  right: 50px;
  top: 0px;

  border-radius: 100%;
  background: linear-gradient(
    245deg,
    rgba(114, 35, 35, 0.795) 0%,
    rgba(255, 0, 0, 0.73) 51.85%
  );
  filter: blur(90px);
}

.text-title {
  margin-bottom: 50px;
}

.text-desc {
  font-size: 25px;
  font-weight: 200;
}

/* FOOTER */

.footer {
  background-color: #000000;
  padding-top: 50px;
}

.limit {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  border-style: solid;
  border-width: 3px;
  border-color: #ffffff;
  padding: 25px 25px;
  border-radius: 30px;
}

.limit-img {
  width: 100px;
}

.limit-desc {
  font-weight: 200;
  width: 1000px;
  font-size: 18px;
}

.footer-links-wrapper {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.footer-imgs-wrapper {
  gap: 10px;
  margin-top: 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 50px;
}

.footer-img {
  object-fit: contain;
}

.footer-img-limit {
  font-size: 50px;
}

.copyright {
  text-align: center;
  color: lightgray;
}

/* CRICET */

.welcome-title-cricet {
  text-align: center;
  font-size: 100px;
}

.welcome-title-cricet-wrapper::before {
  left: 250px;
}

/* ABOUT */

.about-welcome {
  margin-top: 100px;
  margin-bottom: 100px;
}

.about-welcome-title {
  text-align: center;
}

.about-welcome-desc {
  padding-top: 50px;
}

/* CONTACTS */

.hero-contacts {
  margin-top: 100px;
  text-align: center;
}

.hero-contacts p {
  margin-top: 50px;
}

.feedback {
  align-items: center;
  padding: 70px 0px;
}

.feedback h2 {
  text-align: center;
  font-weight: 500;
  font-size: 30px;
}

.feedback p {
  text-align: center;
  margin-top: 10px;
}

.feedback form {
  align-items: center;
  margin: auto auto auto auto;
  width: 90%;
}

.feedback form .inline {
  display: flex;
  justify-content: space-between;
}

.feedback form .inline > div {
  width: 50%;
}

.feedback form label {
  color: #ffffff;
  font-size: 14;
}

.feedback form input,
.feedback form textarea {
  background: #151515;
  border-radius: 10px;
  border: 0.6px solid #ff0000;
  display: block;
  width: 90%;
  padding: 15px 10px;
  outline: none;
  color: #fff;
  margin-top: 7px;
  margin-bottom: 20px;
}

.feedback form .one-line {
  width: 95%;
}

.feedback form textarea {
  resize: none;
  height: 100px;
}

.feedback form button {
  background: linear-gradient(-223deg, #ff0000 0%, #600000 100%);
  border-radius: 5px;
  border: 0;
  float: right;
  cursor: pointer;
  color: #fff;
  padding: 15px 35px;
  transition: all 500ms ease;
}

.feedback form button:hover {
  transform: scale(1.1);
}

/* MEDIA */

@media (max-width: 1320px) {
  .container {
    width: 1200px;
  }

  .basketball {
    width: 250px;
    left: 15px;
    bottom: -100px;
  }

  .hockey {
    width: 130px;
    left: 250px;
    bottom: -130px;
  }

  .football {
    width: 200px;
    right: 25px;
    bottom: 10px;
  }

  .welcome-cricet {
    margin-top: 200px;
  }

  .welcome-title,
  .welcome-title-cricet {
    font-size: 60px;
    width: 650px;
  }

  .welcome-imgs-wrapper {
    width: 600px;
    position: relative;
  }

  .lisense-wrapper {
    width: 700px;
  }
}

@media (max-width: 1220px) {
  .container {
    width: 1100px;
  }

  .basketball {
    width: 200px;
    left: 45px;
    bottom: -50px;
  }

  .hockey {
    width: 100px;
    left: 250px;
    bottom: -70px;
  }

  .football {
    width: 150px;
    right: 25px;
    bottom: 50px;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 900px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
  }

  h1,
  h2 {
    font-size: 60px;
  }

  .lisense-wrapper {
    width: 600px;
  }

  .limit-desc {
    font-weight: 200;
    width: 800px;
    font-size: 15px;
  }
}

@media (max-width: 1120px) {
  .container {
    width: 1000px;
  }

  .basketball {
    width: 200px;
    left: 30px;
    bottom: -50px;
  }

  .hockey {
    width: 100px;
    left: 250px;
    bottom: -40px;
  }

  .football {
    width: 150px;
    right: 10px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 60px;
    width: 600px;
  }

  .welcome-imgs-wrapper::before {
    width: 200px;
    height: 200px;
    left: 150px;
    top: -10px;
  }

  .welcome-imgs-wrapper {
    width: 550px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 900px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
  }

  .benefits-title {
    font-weight: 500;
    font-size: 20px;
    color: #121517;
    margin-bottom: 15px;
  }

  .brend-logo {
    width: 180px;
  }

  .brend-title {
    width: 300px;
    text-align: center;
    font-size: 40px;
  }

  .lisense-wrapper {
    width: 550px;
  }

  .lisense-img {
    object-fit: contain;
    width: 350px;
  }

  h1,
  h2 {
    font-size: 50px;
  }

  .limit-desc {
    font-weight: 200;
    width: 700px;
    font-size: 15px;
  }
}

@media (max-width: 1020px) {
  .container {
    width: 900px;
  }

  .header-link {
    font-size: 14px;
  }

  .header-activ {
    font-size: 14px;
  }
  .header-btn {
    font-size: 14px;
  }

  .basketball {
    width: 200px;
    left: 30px;
    bottom: -50px;
  }

  .hockey {
    width: 100px;
    left: 250px;
    bottom: -40px;
  }

  .football {
    width: 150px;
    right: 10px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 50px;
    width: 500px;
  }

  .welcome-imgs-wrapper::before {
    width: 200px;
    height: 200px;
    left: 150px;
    top: -10px;
  }

  .welcome-imgs-wrapper {
    width: 550px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 800px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
  }

  .benefits-title {
    font-weight: 500;
    font-size: 20px;
    color: #121517;
    margin-bottom: 15px;
  }

  .brend-logo {
    width: 150px;
  }

  .brend-title {
    width: 250px;
    text-align: center;
    font-size: 35px;
  }

  .lisense-wrapper {
    width: 550px;
  }

  .lisense-img {
    object-fit: contain;
    width: 350px;
  }

  .lisense-desc {
    font-size: 20px;
  }

  .text-desc {
    font-size: 20px;
  }

  h1,
  h2 {
    font-size: 50px;
  }

  .limit-desc {
    font-weight: 200;
    width: 600px;
    font-size: 13px;
  }

  .footer-img {
    width: 250px;
  }
}

@media (max-width: 920px) {
  .container {
    width: 800px;
  }

  .header-link {
    font-size: 14px;
  }

  .header-activ {
    font-size: 14px;
  }
  .header-btn {
    font-size: 14px;
  }

  .basketball {
    width: 180px;
    left: 20px;
    bottom: -50px;
  }

  .hockey {
    width: 80px;
    left: 200px;
    bottom: -20px;
  }

  .football {
    width: 150px;
    right: 10px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 45px;
    width: 450px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .welcome-imgs-wrapper {
    width: 550px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 700px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
  }

  .benefits-title {
    font-weight: 500;
    font-size: 20px;
    color: #121517;
    margin-bottom: 15px;
  }

  .benefits-item {
    max-width: 200px;
    text-align: center;
  }
  .benefits-img-wrapper::before {
    content: "";
    display: block;
    width: 120px;
    height: 120px;

    border-radius: 100%;
    background: linear-gradient(245deg, #600000 0%, #ff0000 100%);
    box-shadow: 0 4px 41px 0 rgba(0, 0, 0, 0.39);
  }
  .benefits-icon {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  .benefits-container::after {
    top: 30px;
    left: 20px;

    width: 160px;
    height: 160px;
  }

  .brend-logo {
    width: 120px;
  }

  .brend-title {
    width: 200px;
    text-align: center;
    font-size: 30px;
  }

  .rating {
    width: 100px;
  }

  .lisense-wrapper {
    width: 450px;
  }

  .lisense-img {
    object-fit: contain;
    width: 280px;
  }

  .lisense-desc {
    font-size: 20px;
  }

  .text-desc {
    font-size: 20px;
  }

  h1,
  h2 {
    font-size: 45px;
  }

  .limit-desc {
    font-weight: 200;
    width: 600px;
    font-size: 13px;
  }

  .limit-img {
    width: 80px;
  }

  .footer-img {
    width: 250px;
  }
}

@media (max-width: 820px) {
  .container {
    width: 700px;
  }

  .header-link {
    font-size: 14px;
  }

  .header-activ {
    font-size: 14px;
  }
  .header-btn {
    font-size: 14px;
  }

  .header-nav {
    width: 80%;
  }

  .cricet-main .welcome-cricet {
    margin-top: 200px;
  }

  .welcome {
    margin-top: 100px;
  }

  .benefits {
    margin-top: 100px;
  }

  .basketball {
    width: 180px;
    left: 20px;
    bottom: -50px;
  }

  .hockey {
    width: 80px;
    left: 200px;
    bottom: -20px;
  }

  .football {
    width: 150px;
    right: 10px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 45px;
    width: 350px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .welcome-imgs-wrapper {
    width: 550px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 600px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
    flex-wrap: wrap;
  }

  .benefits-title {
    font-weight: 500;
    font-size: 20px;
    color: #121517;
    margin-bottom: 15px;
  }

  .benefits-item {
    max-width: 200px;
    text-align: center;
  }
  .benefits-img-wrapper::before {
    content: "";
    display: block;
    width: 120px;
    height: 120px;

    border-radius: 100%;
    background: linear-gradient(245deg, #600000 0%, #ff0000 100%);
    box-shadow: 0 4px 41px 0 rgba(0, 0, 0, 0.39);
  }
  .benefits-icon {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  .benefits-container::after {
    top: 30px;
    left: 20px;

    width: 160px;
    height: 160px;
  }

  .brends .header-btn {
    font-size: 18px;
  }

  .brend-logo {
    width: 100px;
  }

  .brend-title {
    width: 200px;
    text-align: center;
    font-size: 25px;
  }

  .rating {
    width: 100px;
  }

  .lisense-wrapper {
    width: 450px;
  }

  .lisense-img {
    object-fit: contain;
    width: 280px;
  }

  .lisense-desc {
    font-size: 20px;
  }

  .text-desc {
    font-size: 20px;
  }

  h1,
  h2 {
    font-size: 40px;
  }

  .limit-desc {
    font-weight: 200;
    width: 500px;
    font-size: 10px;
  }

  .limit-img {
    width: 80px;
  }

  .footer-img {
    width: 250px;
  }
}

@media (max-width: 720px) {
  body {
    overflow: hidden;
  }

  .container {
    width: 600px;
  }

  .header-nav {
    display: none;
    width: 80%;
  }

  .menu {
    background-color: transparent;
    display: block;
    padding: 0;
    border: none;

    position: absolute;
    top: 0px;
    right: 35px;
  }
  .menu-img {
    width: 30px;
    height: 25px;
    object-fit: contain;
    object-position: center;
  }

  .mobile .header-nav {
    display: block;
    display: flex;
    justify-content: center;
    width: 590px;
    gap: 30px;
    flex-wrap: wrap;
  }

  .mobile .container {
    width: 590px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .welcome {
    margin-top: 100px;
  }

  .benefits {
    margin-top: 100px;
  }

  .basketball {
    width: 180px;
    left: 0px;
    bottom: -50px;
  }

  .hockey {
    width: 80px;
    left: 200px;
    bottom: -20px;
  }

  .football {
    width: 150px;
    right: -20px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 45px;
    width: 300px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .welcome-imgs-wrapper {
    width: 550px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 550px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
    flex-wrap: wrap;
  }

  .benefits-title {
    font-weight: 500;
    font-size: 20px;
    color: #121517;
    margin-bottom: 15px;
  }

  .benefits-item {
    max-width: 160px;
    text-align: center;
  }
  .benefits-img-wrapper::before {
    content: "";
    display: block;
    width: 120px;
    height: 120px;

    border-radius: 100%;
    background: linear-gradient(245deg, #600000 0%, #ff0000 100%);
    box-shadow: 0 4px 41px 0 rgba(0, 0, 0, 0.39);
  }
  .benefits-icon {
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
  }

  .benefits-container::after {
    top: 30px;
    left: 20px;

    width: 160px;
    height: 160px;
  }

  .brends .header-btn {
    font-size: 15px;
  }

  .brend-logo {
    width: 100px;
  }

  .brend-title {
    width: 100px;
    text-align: center;
    font-size: 20px;
  }

  .rating {
    width: 100px;
  }

  .lisense-wrapper {
    width: 300px;
  }

  .lisense-img {
    object-fit: contain;
    width: 250px;
  }

  .lisense-desc {
    font-size: 15px;
  }

  .text-desc {
    font-size: 15px;
  }

  h1,
  h2 {
    font-size: 35px;
  }

  .limit-desc {
    font-weight: 200;
    width: 400px;
    font-size: 10px;
  }

  .limit-img {
    width: 80px;
  }

  .footer-img {
    width: 250px;
  }

  .footer .header {
    display: none;
  }
}

@media (max-width: 620px) {
  .container {
    width: 500px;
  }

  .header-nav {
    display: none;
    width: 80%;
  }

  .menu {
    background-color: transparent;
    display: block;
    padding: 0;
    border: none;

    position: absolute;
    top: 0px;
    right: 35px;
  }
  .menu-img {
    width: 30px;
    height: 25px;
    object-fit: contain;
    object-position: center;
  }

  .mobile .header-nav {
    display: block;
    display: flex;
    justify-content: center;
    width: 500px;
    gap: 30px;
    flex-wrap: wrap;
  }

  .mobile .container {
    width: 500px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .welcome {
    margin-top: 100px;
  }

  .benefits {
    margin-top: 100px;
  }

  .basketball {
    width: 150px;
    left: -20px;
    bottom: 0px;
  }

  .hockey {
    width: 70px;
    left: 100px;
    bottom: -20px;
  }

  .football {
    width: 120px;
    right: -15px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 35px;
    width: 250px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .welcome-imgs-wrapper {
    width: 300px;
    position: relative;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 450px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
    flex-wrap: wrap;
  }

  .brends .header-btn {
    font-size: 15px;
  }

  .brend-logo {
    width: 80px;
  }

  .brend-title {
    width: 80px;
    text-align: center;
    font-size: 20px;
  }

  .welcome-title-cricet {
    font-size: 40px;
  }

  .rating {
    width: 80px;
  }

  .lisense-wrapper {
    width: 250px;
  }

  .lisense-img {
    object-fit: contain;
    width: 200px;
  }

  .lisense-desc {
    font-size: 15px;
  }

  .text-desc {
    font-size: 15px;
  }

  h1,
  h2 {
    font-size: 30px;
  }

  .limit {
    flex-direction: column;
    align-items: center;
  }

  .limit-desc {
    padding-top: 5px;
    font-weight: 200;
    width: 400px;
    font-size: 10px;
  }

  .limit-img {
    margin-bottom: 10px;
    width: 80px;
  }

  .footer-img {
    width: 200px;
  }
}

@media (max-width: 520px) {
  .container {
    width: 400px;
  }

  .mobile .header-nav {
    width: 400px;
  }

  .mobile .container {
    width: 400px;
  }

  .welcome .container {
    flex-direction: column;
  }

  .welcome-imgs-wrapper {
    margin-top: 200px;
    width: 400px;
    margin-left: 20px;
  }

  .welcome {
    margin-top: 50px;
  }

  .cricet-main .welcome-cricet {
    margin-top: 50px;
  }

  .basketball {
    width: 150px;
    left: 20px;
    bottom: 0px;
  }

  .hockey {
    width: 70px;
    left: 170px;
    bottom: -20px;
  }

  .football {
    width: 120px;
    right: 100px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 35px;
    width: 400px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 350px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
    flex-wrap: wrap;
  }

  .benefits-container::after {
    top: 15px;
  }

  .brends-ithem {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brends .header-btn {
    font-size: 15px;
  }

  .brend-logo {
    width: 80px;
  }

  .brend-title {
    width: 80px;
    text-align: center;
    font-size: 20px;
  }

  .rating {
    width: 80px;
  }

  .lisense .container {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .lisense-wrapper {
    width: 400px;
  }

  .lisense-img {
    object-fit: contain;
    width: 300px;
  }

  .lisense-desc {
    font-size: 15px;
  }

  .text-desc {
    font-size: 15px;
  }

  h1,
  h2 {
    font-size: 30px;
  }

  .limit {
    flex-direction: column;
    align-items: center;
  }

  .limit-desc {
    padding-top: 5px;
    font-weight: 200;
    width: 350px;
    font-size: 10px;
    text-align: center;
  }

  .limit-img {
    margin-bottom: 10px;
    width: 80px;
  }

  .footer-img {
    width: 160px;
  }
}

@media (max-width: 420px) {
  .cricet-main .container {
    width: 300px;
  }

  .container {
    width: 300px;
  }

  .mobile .header-nav {
    width: 300px;
  }

  .mobile .container {
    width: 300px;
  }

  .welcome .container {
    flex-direction: column;
  }

  .welcome-imgs-wrapper {
    margin-top: 200px;
    width: 300px;
    margin-left: 20px;
  }

  .welcome {
    margin-top: 50px;
  }

  .basketball {
    width: 150px;
    left: -20px;
    bottom: 0px;
  }

  .hockey {
    width: 70px;
    left: 100px;
    bottom: -20px;
  }

  .football {
    width: 120px;
    right: 50px;
    bottom: 50px;
  }

  .welcome-title {
    font-size: 25px;
    width: 300px;
  }

  .welcome-imgs-wrapper::before {
    width: 180px;
    height: 180px;
    left: 150px;
    top: -20px;
  }

  .benefits-container {
    padding-top: 50px;
    padding-bottom: 20px;
    max-width: 250px;
    border-radius: 45px;
    display: flex;
    justify-content: space-around;
    position: relative;
    background: #ffffff;
    flex-wrap: wrap;
  }

  .benefits-container::after {
    top: 15px;
  }

  .brends-ithem {
    flex-wrap: wrap;
    gap: 10px;
  }

  .brends .header-btn {
    font-size: 15px;
  }

  .brend-logo {
    width: 80px;
  }

  .brend-title {
    width: 80px;
    text-align: center;
    font-size: 20px;
  }

  .rating {
    width: 80px;
  }

  .lisense .container {
    align-items: center;
    flex-direction: column;
    gap: 30px;
  }

  .lisense-wrapper {
    width: 300px;
  }

  .lisense-img {
    object-fit: contain;
    width: 250px;
  }

  .lisense-desc {
    font-size: 15px;
  }

  .text-desc {
    font-size: 15px;
  }

  h1,
  h2 {
    font-size: 25px;
  }

  .limit {
    flex-direction: column;
    align-items: center;
  }

  .limit-desc {
    padding-top: 5px;
    font-weight: 200;
    width: 250px;
    font-size: 10px;
    text-align: center;
  }

  .limit-img {
    margin-bottom: 10px;
    width: 80px;
  }

  .footer-img {
    width: 130px;
  }
}
