:root {
  --blue-1: #415e9d;
  --blue-2: rgba(65, 94, 157, 0.4);
  --gren-1: rgba(113, 182, 43, 1);
  --gren-2: rgba(113, 182, 43, 0.4);
}
.bg-grin-2 {
  background: var(--gren-2);
}
.bg-blue-2 {
  background: var(--blue-2);
}
.bg-blue-1 {
  background: var(--blue-1);
  color: #fff;
}
.bg-blue-1 a {
  color: #fff;
}
.bg-wigth {
  background: rgba(255, 255, 255, 0.8);
}

.w-60 {
  width: 60% !important;
}
.w-70 {
  width: 70% !important;
}

.display-5 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.display-6 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}
a {
  text-decoration: none;
  text-transform: uppercase;
}
p {
  font-size: 22px;
  font-weight: 500;
}
.nav-link,
.nav-link:hover {
  color: black;
}
.ul-cirk li::before {
  display: block;
  position: relative;
  content: "";
  left: -30px;
  top: 23px;
  width: 20px;
  height: 20px;
  border-radius: 50px;
  background: #70b62b;
  z-index: 1;
  list-style-position: outside;
}
ul li {
  font-size: 18px;
  font-weight: 600;
}

/* ------------button style---------- */
.box-btn {
  max-width: 650px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: auto;
}
.bt-green-full,
.bt-blue-full,
.bt-blue-border,
.bt-green-border {
  display: inline-block;
  border-radius: 50px;
  padding: 0.8rem 3rem;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  width: max-content;
  margin-top: 1rem;
}
.bt-green-full:hover,
.bt-blue-full:hover,
.bt-blue-border:hover,
.bt-green-border:hover {
  text-decoration: none;
}

.bt-green-full {
  border: 2pt solid #70b62b;
  background: #70b62b;
  color: #fff;
}
.bt-green-full:hover {
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
.bt-green-border {
  color: rgb(0, 0, 0);
  border: 2pt solid #70b62b;
  background: #ffffff;
}
.bt-green-border:hover {
  background: #70b62b;
  color: #fff;
}
.bt-blue-full {
  border: 2pt solid #415e9d;
  background: #415e9d;
  color: #fff;
}
.bt-blue-full:hover {
  background: #ffffff;
  color: rgb(0, 0, 0);
}
.bt-blue-border {
  background: #ffffff;
  color: rgb(0, 0, 0);
  border: 2pt solid #415e9d;
}
.bt-blue-border:hover {
  background: #415e9d;
  color: #fff;
}
/* ============================= */
.blolk-a {
  background: url(https://prodzakupka.ru/upload/medialibrary/049/049ad873659aba8ea8a58f4ae3885503.png),
    radial-gradient(
      circle at 80% 30%,
      rgba(113, 182, 43, 0.4) 300px,
      rgba(252, 252, 252, 0) 300px
    );
  background-repeat: no-repeat;
  background-position: 85% 45%;
  min-height: 90vh;
}
.block-b {
  background: radial-gradient(
      circle at 10% 10%,
      rgba(113, 182, 43, 0.4) 20%,
      rgba(252, 252, 252, 0) 20%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(65, 94, 157, 0.4) 20%,
      rgba(252, 252, 252, 0) 20%
    );
}

/* ================================= */
.pop1 {
  position: fixed;
  display: block;
  width: 250px;
  height: 50px;
  right: 20px;
  bottom: 100px;
  animation: pop1 3s;
}
@keyframes pop1 {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes hide-pop1 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.pop2 {
  display: none;
  position: fixed;
  min-width: 650px;
  padding: 50px 60px;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(240, 240, 240);
  border: 1px solid var(--blue-2);
  border-radius: 10px;
}
.close-btn {
  position: absolute;
  width: 3px;
  height: 20px;
  top: 10px;
  right: 20px;
  background: rgb(97, 97, 97);
  transform: rotate(-45deg);
}
.close-btn::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 20px;
  top: 0px;
  right: 0px;
  background: rgb(97, 97, 97);
  transform: rotate(90deg);
}

.close-btn:hover,
.close-btn:hover::before {
  background: rgb(184, 20, 9);
}
.m-show {
  display: none;
}
.pop3 {
  display: none;
  position: fixed;
  width: 4rem;
  height: 4rem;
  bottom: 2rem;
  right: 3rem;
  border-radius: 50px;
  border: 1px solid #fff;
  background: var(--blue-2);
  cursor: pointer;
}
.pop3::before, .pop3::after {
content: '';
position: absolute;
width: 5px;
height: 2rem;
background: #fff;
}
.pop3::before {
  transform: rotate(-45deg);
  top: 12px;
  left: 38px;
}
.pop3::after {
  transform: rotate(45deg);
  top: 12px;
  left: 18px;
}
/* -----------mobail display--------- */
@media (max-width: 450px) {
  .hide-m {
    display: none;
  }
  .m-show {
    display: block;
  }
  .w-50,
  .w-60,
  .w-70 {
    width: 100% !important;
  }
  .p-5,
  .px-5 {
    padding: 1rem !important;
  }
  .display-5 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
  }

  .display-6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
  }
  .col {
    flex-basis: auto!important;
  }
  .m-text-center,
  .text-right {
    text-align: center !important;
  }
  .navbar {
    justify-content: flex-end;
  }
  .blolk-a {
    background: url(https://prodzakupka.ru/upload/medialibrary/049/049ad873659aba8ea8a58f4ae3885503.png),
      radial-gradient(
        circle at 80% 30%,
        rgba(113, 182, 43, 0.4) 10rem,
        rgba(252, 252, 252, 0) 10rem
      );
    background-repeat: no-repeat;
    background-position: center 6rem, center;
    background-size: 80%, 100%;
  }
  .blolk-a > div {
    padding-top: 14rem !important;
  }
  .m-position-1 {
    display: block;
    position: absolute;
    top: 3.5rem;
    left: 1rem;
  }
  .pop1 {
    display: none;
  }
  .col {
    width: 100%;
  }
  .pop2 {
    min-width: 95%;
    padding: 30px 30px;
  }
  .bt-green-full,
  .bt-blue-full,
  .bt-blue-border,
  .bt-green-border {
  text-align: center;
  }

  .pop3  {
    display: none;
  }



}
