body {
  background-color: #F1F0EC;
  font-family: "Poppins", sans-serif;
  color: #181818;
  font-size: 18px;
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pg_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 900px) {
  .pg_container {
    width: 100%;
  }
}

strong {
  font-weight: 700;
}

header {
  padding: 40px 0;
}
header .pg_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  header {
    padding: 20px 0;
  }
  header .pg_container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.pg_logo img {
  width: 90px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .pg_logo img {
    width: 50px;
  }
}

.pg_menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.pg_menu ul li a {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 700;
  color: #181818;
  position: relative;
}
.pg_menu ul li a::after {
  position: absolute;
  bottom: -10px;
  content: "";
  width: 10px;
  height: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #181818;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.pg_menu ul li a:hover::after {
  width: 20px;
}
@media (max-width: 768px) {
  .pg_menu ul {
    gap: 20px;
  }
}

.pg_pretitle {
  font-weight: 700;
  font-size: clamp(18px, 2.667vw, 22px);
  margin-bottom: 20px;
}

.pg_play-btn {
  min-width: 250px;
  max-width: 250px;
  display: block;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.pg_play-btn img {
  width: 100%;
}
.pg_play-btn--wh {
  min-width: 200px;
  max-width: 200px;
}
.pg_play-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (max-width: 768px) {
  .pg_play-btn {
    min-width: 200px;
    max-width: 200px;
  }
}

.pg_main-section {
  background-image: url(../img/img1312.png);
  background-position: right 10vw bottom;
  background-size: 500px;
  padding-bottom: 100px;
}
.pg_main-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pg_main-section__content {
  display: -ms-grid;
  display: grid;
}
.pg_main-section__image img {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 992px) {
  .pg_main-section {
    background-position: right -30px bottom;
    background-size: 300px;
    padding-bottom: 70px;
  }
}
@media (max-width: 768px) {
  .pg_main-section {
    padding-bottom: 300px;
  }
}

section {
  margin: clamp(50px, 13.333vw, 150px) 0;
}

h1 {
  text-transform: uppercase;
  font-size: clamp(40px, 8.667vw, 80px);
  font-weight: 900;
  max-width: 600px;
  margin-top: clamp(70px, 14.667vw, 150px);
  margin-bottom: 50px;
}
h1 span {
  text-transform: capitalize;
  color: #454545;
  font-weight: 900;
  font-size: clamp(35px, 7.333vw, 70px);
}

h2 {
  text-transform: uppercase;
  font-size: clamp(28px, 5.333vw, 60px);
  font-weight: 900;
  text-align: center;
  margin-bottom: clamp(30px, 5.333vw, 50px);
}
h2 span {
  text-transform: capitalize;
  color: #454545;
  font-weight: 900;
  font-size: 70px;
}

h3 {
  text-transform: uppercase;
  font-size: clamp(28px, 6vw, 60px);
  font-weight: 800;
  text-align: center;
  color: #454545;
  margin-bottom: 50px;
}

h4 {
  font-size: clamp(24px, 3.467vw, 30px);
  font-weight: 600;
  margin-bottom: 50px;
  text-align: left;
}

.pg_image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
.pg_image img {
  border-radius: 20px;
  width: 100%;
}

.pg_text {
  max-width: 900px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
.pg_text p {
  line-height: 150%;
}

.pg_screens_itm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(20px, 4vw, 40px);
  padding: 0 80px;
}
.pg_screens_itm__content {
  width: 50%;
}
.pg_screens_itm__image {
  width: 50%;
}
.pg_screens_itm__image img {
  width: 100%;
}
.pg_screens_itm h4 {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .pg_screens_itm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 40px;
  }
  .pg_screens_itm__content {
    width: 100%;
  }
  .pg_screens_itm__image {
    width: 100%;
  }
}

.mySwiper {
  position: relative;
}

.swiper-button-next1,
.swiper-button-prev1 {
  position: absolute;
  top: calc(50% - 50px);
  z-index: 3;
  cursor: pointer;
}
.swiper-button-next1 svg,
.swiper-button-prev1 svg {
  width: 50px;
  height: 50px;
}
@media (max-width: 992px) {
  .swiper-button-next1 svg,
  .swiper-button-prev1 svg {
    width: 30px;
    height: 40px;
  }
}

.swiper-button-next1 {
  right: 0;
}

.swiper-button-prev1 {
  left: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pg_faqsec h2 {
  text-align: center;
}

.pg_faqsec_list {
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1000px;
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  gap: 30px;
}

.pg_faqsec_item {
  display: block;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.pg_faqsec_item:hover {
  opacity: 0.8;
}

.pg_faqsec_item .pg_faqsec_item__question {
  padding: 20px 0px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.pg_faqsec_item .pg_faqsec_item__question svg {
  -webkit-transition: 0.23s;
  transition: 0.23s;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
}
.pg_faqsec_item .pg_faqsec_item__question.active svg {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.pg_faqsec_item .pg_faqsec_item__question h6 {
  padding-right: 0px;
  line-height: 130%;
  font-size: clamp(20px, 3.733vw, 32px);
  margin-bottom: 0;
}

.pg_faqsec_item .pg_faqsec_item__answer {
  display: none;
  padding: 20px 20px;
  margin-top: 5px;
  padding-left: 50px;
}

.pg_faqsec_item .pg_faqsec_item__answer p {
  font-size: clamp(14px, 2.267vw, 20px);
  line-height: 200%;
}

.pg_updates .pg_container {
  border: 2px solid #181818;
  border-radius: 25px;
  padding-top: 70px;
  padding-bottom: 70px;
}

footer {
  background-color: #181818;
  padding: 140px 0;
}
footer .pg_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
footer p {
  color: #fff;
  line-height: 150%;
  text-align: center;
}

.pg_foonav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 4vw, 40px);
}
.pg_foonav a {
  color: #fff;
  font-size: 16px;
  text-transform: capitalize;
}
.pg_foonav a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .pg_foonav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.pg_coooooki {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
}
.pg_coooooki .pg_coooooki_sec {
  background: #181818;
  -webkit-box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.pg_coooooki p {
  line-height: 200%;
}
.pg_coooooki a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.pg_coooooki .pg_coooooki_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #121E2A;
  background-color: #fff;
  border: none;
  padding: 15px 25px;
  border-radius: 15px;
}

.pg_text-section {
  padding-top: 100px;
  padding-bottom: 150px;
}
.pg_text-section h2 {
  font-size: clamp(35px, 4vw, 35px) !important;
}
.pg_text-section a {
  color: #121E2A;
  font-weight: 700;
}
@media (max-width: 768px) {
  .pg_text-section {
    padding-top: 50px;
    padding-bottom: 70px;
  }
}