body {
  background-color: #fff;
  font-family: "Figtree", sans-serif;
  color: #30282A;
}

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

.g_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 900px) {
  .g_container {
    width: 100%;
    padding: 0 15px;
  }
}

h1 {
  font-size: clamp(40px, 7.2vw, 60px);
  line-height: 140%;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

h2 {
  font-size: clamp(30px, 5.333vw, 45px);
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 30px;
}

h4 {
  font-size: clamp(25px, 4vw, 35px);
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 30px;
}

p {
  font-size: 20px;
  line-height: 140%;
}

ul {
  list-style-type: disc;
  padding-left: 25px;
}
ul li {
  font-size: 20px;
  line-height: 140%;
}

.g_btngo {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.g_btngo img {
  width: 200px;
}
.g_btngo:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.g_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 4px solid #F53C3C;
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 20;
}
.g_header__logo {
  padding: 20px;
  background-color: #F53C3C;
}
.g_header .g_logo img {
  width: 70px;
}
.g_header__menu {
  padding-left: clamp(20px, 4.667vw, 50px);
}
.g_header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(20px, 4.667vw, 70px);
  list-style-type: none;
  padding-left: 0;
}
.g_header__menu ul a {
  font-size: 17px;
  color: #30282A;
  text-transform: uppercase;
  position: relative;
}
.g_header__menu ul a::after {
  display: block;
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: -3px;
  left: 0;
  background-color: #F53C3C;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.g_header__menu ul a:hover::after {
  width: 100%;
}

.g_content {
  padding: clamp(40px, 6.667vw, 70px) 0;
}

.g_gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 576px) {
  .g_gallery {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.g_gallery .g_gallery-item {
  position: relative;
  border: 4px solid #F53C3C;
}
.g_gallery .g_gallery-item img {
  width: 100%;
}
.g_gallery .g_gallery-item .g_btngo {
  position: absolute;
  bottom: 0;
  left: 0;
}

.g_btn-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0;
}

.g_twocoltext {
  padding: clamp(20px, 4vw, 40px);
}
.g_twocoltext h2 {
  text-align: center;
}
.g_twocoltext__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
@media (max-width: 768px) {
  .g_twocoltext__row {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.g_faq {
  padding: clamp(20px, 4vw, 40px);
  background: #fff;
  margin: 60px 0;
}
.g_faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.g_faq__item {
  padding: 20px 25px;
  border: 2px solid #F53C3C;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.g_faq__item:hover {
  -webkit-box-shadow: 0 4px 24px rgba(245, 60, 60, 0.08);
          box-shadow: 0 4px 24px rgba(245, 60, 60, 0.08);
}
.g_faq__question {
  font-size: 22px;
  font-weight: 600;
  color: #30282A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.g_faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: #F53C3C;
  font-size: 24px;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.g_faq__item.open .g_faq__question::after {
  content: "-";
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.g_faq__answer {
  font-size: 18px;
  color: #30282A;
  display: none;
  margin-top: 5px;
  line-height: 1.5;
  padding: 20px;
}
.g_faq__item.open .g_faq__answer {
  display: block;
}

.g_reviews {
  margin: clamp(40px, 6.667vw, 60px) 0;
  background: #fff;
  padding: clamp(20px, 4vw, 40px);
}
.g_reviews h2 {
  text-align: center;
}
.g_reviews__list {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  -ms-grid-columns: 1fr 25px 1fr;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .g_reviews__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
}
.g_reviews__item {
  border: 2px solid #F53C3C;
  background: #FFF5F5;
  padding: 25px 30px;
  -webkit-box-shadow: 0 2px 12px rgba(245, 60, 60, 0.04);
          box-shadow: 0 2px 12px rgba(245, 60, 60, 0.04);
}
.g_reviews__name {
  font-size: 20px;
  font-weight: 700;
  color: #30282A;
  margin-bottom: 8px;
}
.g_reviews__stars {
  color: #F53C3C;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.g_reviews__text {
  font-size: 18px;
  color: #30282A;
  line-height: 1.5;
}

.g_updates {
  margin: clamp(40px, 6.667vw, 60px) 0;
  background: #fff;
  padding: clamp(20px, 4vw, 40px);
}
.g_updates h2 {
  text-align: center;
}
.g_updates__box {
  max-width: 800px;
  margin: 0 auto;
}
.g_updates p {
  margin-bottom: 20px;
}
.g_updates li {
  margin-bottom: 20px;
}

.g_footer {
  margin-top: clamp(50px, 10vw, 100px);
  border: 4px solid #F53C3C;
  padding: clamp(30px, 5.333vw, 50px) 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.g_footer .g_logo {
  border: 4px solid #F53C3C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.g_footer .g_footer-menu span {
  font-size: 22px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}
.g_footer ul {
  list-style-type: none;
  padding-left: 0;
}
.g_footer ul li {
  margin-bottom: 20px;
}
.g_footer ul a {
  color: #000;
}
@media (max-width: 768px) {
  .g_footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px;
  }
}

.g_txtpgcontent {
  max-width: 900px;
  padding: 50px;
  margin: 0 auto;
}
.g_txtpgcontent h2 {
  margin-top: 30px;
}