@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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}


p,
span,
button,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

p,
span,
button {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
}

p {
  font-weight: 400;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
}

@media only screen and (max-width: 700px) {
  p,
  span,
  button {
    font-size: 16px;
    line-height: 22px;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}

.buttton {
  border-radius: var(--Radius-l, 22px);
  padding: 3px;
  min-width: 200px;
  transition: 0.3s;
  border: none; /* Ana elementin kenarlÄ±ÄŸÄ±nÄ± kaldÄ±r */
  outline: none; /* Outline'Ä± da kaldÄ±r */
}

.buttton .buttton__text {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.buttton.button_blue {
  border-radius: var(--Radius-l, 22px);
  background: linear-gradient(#caad2d, #956c2a);
  opacity: 1;
  width: 245px;
  height: 50px;
  border: none; /* Ana buton elementinin kenarlÄ±ÄŸÄ±nÄ± kaldÄ±r */
  outline: none; /* Outline'Ä± da kaldÄ±r */
  cursor: pointer;
  transform: scale(1);
  animation: buttonpulse 2s infinite;
  opacity: initial !important;
}

.buttton.button_blue:hover{
 background: linear-gradient(#dbc977, #6f4e18);
}


.pbutton {
  font-size: 16px !important;
    line-height: 28px !important;
    color: #fff !important;
    font-weight: 400 !important;
    max-width: 520px !important;
    margin: 0 !important;
}

.buttton.button_blue .buttton__text {
  color: var(--white-1, #FFF);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  border-radius: var(--Radius-l, 22px);
  border: 1px solid #FFF; /* Beyaz border'Ä± geri getirdik */
  padding: 5px 30px;
  width: 235px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: initial;
}

button:focus{
  outline: 0 !important;
}
.orange-btn {
  background: linear-gradient(#bf9c4a, #8a7037);
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 280px;
  padding: 0 20px;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
  border: 1px solid #ffefb6;
}
.orange-btn:hover {
  background: linear-gradient(#bb9645, #ebd47f);
}

header {
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #003366;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

header.header-hidden {
  transform: translateY(-100%);
}

header nav {
  background: linear-gradient(#656565, #000000);
  height: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header nav > .container {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
header nav > .container > a {
  margin: auto 0;
}
header nav > .container > a > img {
  height: 60px;
}
header nav .menu {
  display: flex;
  gap: 30px;
  margin-top: 11px;
}
header nav .menu li a {
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}
header nav .menu li a:hover {
  color: #dac480;
  opacity: 0.8;
  text-decoration: none;
}

@media only screen and (max-width: 900px) {
  header nav .menu {
    display: none;
  }
}

.hero {
  min-height: calc(100vh - 80px);
  background-image: url("../images/slider.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  background-color: #000000;
  margin-top: 80px;
}


.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero .container {
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 60px 0;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 46px;
  color: #fff;
  font-weight: 200;
}

.hero-content p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  max-width: 520px;
}

.hero-content .orange-btn {
  /* font-size: 18px; */
  max-width: 245px;
}

.hero-content .google-review img {
  height: 40px;
}

.hero-content ul:after{
  margin-top: 11px;
  margin-bottom: 11px;
  display: block;
  height: 1px;
  content: "";
  width: 70px;
  background:#ffffff;
}

.hero-content ul:before{
  margin-top: 11px;
  margin-bottom: 11px;
  display: block;
  height: 1px;
  content: "";
  width: 70px;
  background:#ffffff;
}
.heroul{
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
    max-width: 520px;
}

@media only screen and (max-width: 768px) {
  .hero {
    background-image: none;
    background-color: #000000;
    min-height: auto;
    display: block;
  }

  .buttton.button_blue{
    margin: 0 auto;
  }

  .buttton {
  border-radius: var(--Radius-l, 22px);
  padding: 3px;
  min-width: 200px;
  transition: 0.3s;
  border: none; /* Ana elementin kenarlÄ±ÄŸÄ±nÄ± kaldÄ±r */
  outline: none; /* Outline'Ä± da kaldÄ±r */
}

.buttton .buttton__text {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  font-weight: 700;
}

.buttton.button_blue {
  border-radius: var(--Radius-l, 22px);
  background: linear-gradient(#caad2d, #956c2a);
  opacity: 1;
  width: 227px;
  height: 50px;
  border: none; /* Ana buton elementinin kenarlÄ±ÄŸÄ±nÄ± kaldÄ±r */
  outline: none; /* Outline'Ä± da kaldÄ±r */
  cursor: pointer;
}

.buttton.button_blue:hover{
 background: linear-gradient(#caad2d, #956c2a);
}


.pbutton {
  font-size: 15px !important;
  line-height: 28px !important;
  color: #fff !important;
  font-weight: 400 !important;
  max-width: 520px !important;
  margin: 0 !important;
}

.buttton.button_blue .buttton__text {
  color: var(--white-1, #FFF);
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  border-radius: var(--Radius-l, 22px);
  border: 1px solid #FFF; /* Beyaz border'Ä± geri getirdik */
  padding: 5px 30px;
  width: 220px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: initial;
}
  .hero::before {
    display: none;
  }

  .hero .container {
    padding: 0;
  }

   .hero-bg-mobile {
    width: 100%;
    height: 300px;
    background-image: linear-gradient(to bottom, transparent, transparent 30%, rgb(0 0 0 / 0%) 70%, #00000000), url(../images/mobileslider.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-content {
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .hero-content p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
  }

  .hero-content .orange-btn {
    margin: 0 auto;
  }

  .hero-content .google-review {
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
    line-height: 34px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 22px;
    max-width: 100%;
  }
}

.default-section > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
.default-section > .container > .title {
  text-align: center;
}
.default-section > .container > .title > h1 {
  font-size: 34px;
  line-height: 46px;
}
.default-section > .container > .title > h1 > b {
  font-size: inherit;
  line-height: inherit;
  color: #f98755;
}
.default-section > .container > .desc {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.default-section > .container > .desc > p {
  max-width: 1000px;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
}
.default-section > .container > .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .default-section > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 30px 20px;
  }
  .default-section > .container > .title > h1 {
    font-size: 26px;
    line-height: 36px;
  }
}

.section-2 {
  background: linear-gradient(#656565, #000000);
  padding: 40px 0;
}
.section-2 > .container > .title > h1 {
  color: #fff;
}
.section-2 > .container .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-2 > .container .content .play-img-container {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  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;
  z-index: 9;
  opacity: 1;
  cursor: pointer;
}
.section-2 > .container .content .play-img-container.active {
  opacity: 0;
  bottom: 60px;
}
.section-2 > .container .content .video {
  max-width: 645px;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
.section-2 > .container .content .video:hover .playing {
  opacity: 0.5;
}
.section-2 > .container .content .video video {
  width: 100%;
  max-height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
  height: 100%;
}
.section-2 > .container .content .video button {
  position: absolute;
  aspect-ratio: 1;
  width: 40px;
  z-index: 2;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.section-2 > .container .content .video button.playing {
  opacity: 0;
}
.section-2 > .container .content .video button img {
  width: 100%;
}

.section-4 {
  background-image: url("../images/timebackground.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 0;
}
.section-4 > .container > .title > h1 {
  color: #fff;
}
.section-4 > .container > .desc > p {
  color: #fff;
}
.section-4 > .container > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section-4 > .container > .content > .grid {
  display: grid;
  max-width: 793px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.section-4 > .container > .content > .grid > div {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  background: linear-gradient(#caad2d, #956c2a);
  border-radius: 20px;
  border: 2px solid #fff3c6;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 20px;
  white-space: nowrap;
  box-shadow: 1px 0px 9px rgb(0 0 0 / 47%);
}
.section-4 > .container > .content > .grid > div > img {
  width: 45px;
  height: 45px;
}
.section-4 > .container > .content > .grid > div > b {
  color: #f0f0f2;
  font-size: 20px;
  line-height: 32px;
  /* text-shadow: 1px 0px 9px rgb(0 0 0 / 86%); */
}
.section-4 > .container > .content > .grid > div > span {
  color: #ffffff;
  font-size: 18px;
  line-height: 16px;
}
@media only screen and (max-width: 860px) {
  .section-4 > .container > .content > .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .section-4 > .container > .content > .grid > div > img {
    /* width: 40px; */
  }
  .section-4 > .container > .content > .grid > div > b {
    font-size: 20px;
    line-height: 30px;
  }
  .section-4 > .container > .content > .grid > div > span {
    font-size: 20px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 700px) {
  .model-header-mobil-height {
    min-height: 91vh;
  }
  .section-2
    > .container
    > .content
    > .swiper
    > .swiper-pagination
    > .swiper-pagination-bullet {
    background-color: transparent;
    opacity: 1;
    margin: 0 4px;
    width: 13px;
    height: 13px;
    border: 1px solid #707070;
  }
  .section-2
    > .container
    > .content
    > .swiper
    > .swiper-pagination
    > .swiper-pagination-bullet-active {
    background-color: #fff;
    border-color: #026dd9;
    opacity: 1;
    transform: scale(1.2);
  }

  .dots-pa {
    padding-bottom: 50px !important;
    width: 100%;
  }
  .section-4 {
    padding: 40px 0;
  }
  .section-4 > .container > .content > .grid {
    gap: 12px;
  }
  .section-4 > .container > .content > .grid > div {
    padding: 20px 10px;
  }
  .section-4 > .container > .content > .grid > div > b {
    font-size: 16px;
    line-height: 20px;
  }
  .section-4 > .container > .content > .grid > div > span {
    font-size: 16px;
    line-height: 20px;
  }
  .section-4 > .container > .content > .grid > div > img {
    /* width: 35px; */
  }
}

.section-6 {
  background-color: #f5f5f5;
  padding: 40px 0;
}
.section-6 > .container {
  padding: 0 20px;
}
.section-6 > .container > .title > h1 {
  color: #003366;
}
.section-6 > .container > .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 1317px;
  width: 100%;
  gap: 40px;
}
.section-6 > .container > .content > div {
  width: 100%;
}
.section-6 > .container > .content > div:first-of-type {
  display: grid;
  gap: 20px;
  grid-template-areas:
    "gallery-1 gallery-2 gallery-3"
    "gallery-1 gallery-4 gallery-4";
}
.section-6 > .container > .content > div:first-of-type > .gallery {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
.section-6 > .container > .content > div:first-of-type > .gallery-1 {
  grid-area: gallery-1;
  -o-object-position: 70% center;
  object-position: 70% center;
}
.section-6 > .container > .content > div:first-of-type > .gallery-2 {
  grid-area: gallery-2;
}
.section-6 > .container > .content > div:first-of-type > .gallery-3 {
  grid-area: gallery-3;
}
.section-6 > .container > .content > div:first-of-type > .gallery-4 {
  grid-area: gallery-4;
}
.section-6 > .container > .content > div:last-of-type {
  border-radius: 20px;
  background: linear-gradient(#656565, #000000);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 40px;
  padding-top: 10px;
}
.section-6 > .container > .content > div:last-of-type > div {
  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;
}
.section-6 > .container > .content > div:last-of-type > div > b {
  font-size: 30px;
  line-height: 42px;
  color: #fff;
}
.section-6 > .container > .content > div:last-of-type > div > b > span {
  font-size: inherit;
  line-height: inherit;
  font-weight: 200;
}
.section-6 > .container > .content > div:last-of-type > img {
  max-width: 260px;
  width: 100%;
}
@media only screen and (max-width: 1080px) {
  .section-6 > .container > .content > div:last-of-type > div > b {
    font-size: 28px;
    line-height: 44px;
  }
  .section-6 > .container > .content > div:last-of-type > img {
    max-width: 210px;
    width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .section-6 > .container > .content > div:first-of-type {
    display: grid;
    gap: 20px;
    grid-template-areas: "gallery-2 gallery-3" "gallery-1 gallery-1";
  }
  .section-6 > .container > .content > div:first-of-type > .gallery-1 {
    aspect-ratio: 1.5/1;
    -o-object-position: top center;
    object-position: top center;
  }
  .section-6 > .container > .content > div:first-of-type > .gallery-2 {
    aspect-ratio: 1;
  }
  .section-6 > .container > .content > div:first-of-type > .gallery-3 {
    aspect-ratio: 1;
  }
  .section-6 > .container > .content > div:first-of-type > .gallery-4 {
    display: none;
  }
  .section-6 > .container > .content > div:last-of-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }
  .section-6 > .container > .content > div:last-of-type > div {
    margin: 0 auto;
    align-items: center;
  }
  .section-6 > .container > .content > div:last-of-type > div > b {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }
}

footer {
  background: linear-gradient(#656565, #000000);
  padding: 40px 0;
}
footer > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  color: #fff;
}
footer > .container > .faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  border-bottom: 2px solid #fff;
  padding-bottom: 30px;
}
footer > .container > .faq > h1 {
  font-size: 34px;
  line-height: 46px;
  font-weight: 600;
}
footer > .container > .faq > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
footer > .container > .faq > div > .accordion-ctnr {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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;
}
footer > .container > .faq > div > .accordion-ctnr .accordion {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
footer > .container > .faq > div > .accordion-ctnr .accordion::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  border-radius: 20px;
  z-index: 1;
  pointer-events: none;
  border: 2px solid #bb9557;
  height: auto;
}
footer > .container > .faq > div > .accordion-ctnr .accordion__intro {
  position: relative;
  padding: 20px;
  cursor: pointer;
  background: linear-gradient(#bf9c4a, #8a7037);
  border-radius: 20px;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 10px;
}
footer > .container > .faq > div > .accordion-ctnr .accordion__intro > h4 {
  font-size: 15px;
  font-weight: 400;
  max-width: calc(100% - 40px);
}
footer > .container > .faq > div > .accordion-ctnr .accordion__intro > .plus,
footer > .container > .faq > div > .accordion-ctnr .accordion__intro > .minus {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  right: 20px;
}
footer > .container > .faq > div > .accordion-ctnr .accordion__intro > .minus {
  opacity: 0;
  margin-left: auto;
}
footer > .container > .faq > div > .accordion-ctnr .accordion__content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  will-change: max-height;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  color: #1a1a1a;
  opacity: 0;
  position: relative;
  z-index: 2;
  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;
}
footer
  > .container
  > .faq
  > div
  > .accordion-ctnr
  .accordion__content
  > button {
  min-height: 50px;
}
footer
  > .container
  > .faq
  > div
  > .accordion-ctnr
  .accordion__active
  .accordion__intro
  > .minus {
  opacity: 1;
}
footer
  > .container
  > .faq
  > div
  > .accordion-ctnr
  .accordion__active
  .accordion__intro
  > .plus {
  opacity: 0;
}
footer
  > .container
  > .faq
  > div
  > .accordion-ctnr
  .accordion__active
  .accordion__content {
  padding: 15px;
  opacity: 1;
  max-height: max-content !important;
}
footer > .container > .faq > div > img {
  min-width: 360px;
  width: 30%;
  margin-bottom: auto;
  aspect-ratio: 1/1.3;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}
footer > .container > .footer {
  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: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 20px;
}
footer > .container > .footer > h1 {
  font-size: 34px;
  line-height: 46px;
  font-weight: 600;
}
footer > .container > .footer > img {
  max-width: 325px;
}
footer > .container > .footer > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  width: 100%;
}
footer > .container > .footer > div > .content {
  width: 50%;
}
footer > .container > .footer > div > .content > div {
  max-width: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
footer > .container > .footer > div > .content > div > div > b {
  color: #ffffff;
  font-size: 18px;
}
footer > .container > .footer > div > .content > div > div > p {
  font-size: 18px;
  font-weight: 300;
  color: #fff;
}
footer > .container > .footer > div > .content > div > div.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-size: 26px;
}
footer > .container > .footer > div > .content > div > div.social > a {
  color: inherit;
}
footer > .container > .footer > div > iframe {
  width: 50%;
  border-radius: 5px;
}
@media only screen and (max-width: 900px) {
  footer > .container > .faq > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
  footer > .container > .faq > div > .accordion-ctnr {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    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;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion {
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    position: relative;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion__intro {
    position: relative;
    padding: 20px;
    cursor: pointer;
    background-color: #bb9557;
    border-radius: 20px;
    z-index: 2;
    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;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion__intro > h4 {
    font-size: 18px;
    font-weight: 400;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion__intro > .plus,
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__intro
    > .minus {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: absolute;
    right: 20px;
  }
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__intro
    > .minus {
    opacity: 0;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion__content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    will-change: max-height;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    color: #1a1a1a;
    opacity: 0;
    position: relative;
    z-index: 2;
    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;
  }
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__content
    > button {
    min-height: 50px;
  }
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__active
    .accordion__intro
    > .minus {
    opacity: 1;
  }
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__active
    .accordion__intro
    > .plus {
    opacity: 0;
  }
  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__active
    .accordion__content {
    padding: 20px;
    opacity: 1;
  }
  footer > .container > .faq > div > img {
    width: 100%;
  }
  footer > .container > .footer > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  footer > .container > .footer > div > iframe {
    width: 100%;
  }
  footer > .container > .footer > div > .content {
    width: 100%;
  }
  footer > .container > .footer > div > .content > div {
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
    width: 100%;
  }
  footer > .container > .footer > div > .content > div .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 700px) {
  footer > .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
    color: #fff;
  }
  footer > .container > .faq > h1 {
    font-size: 26px;
    line-height: 36px;
    text-align: center;
  }
  footer > .container > .faq > div > .accordion-ctnr .accordion::before {
    height: 100%;
  }

  footer
    > .container
    > .faq
    > div
    > .accordion-ctnr
    .accordion__active::before {
    height: auto;
  }
  
}

.features {
  padding: 40px 0;
  background: #f5f5f5;
}

.features .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.features .title {
  text-align: center;
}

.features .title h1 {
  font-size: 34px;
  line-height: 46px;
  color: #003366;
  font-weight: bold;
  text-align: center;
}

.features .section-desc {
  text-align: center;
  max-width: 800px;
  margin: 15px auto 0;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
}

.features .orange-btn {
  margin: 0 auto;
  max-width: 245px;
}

.features-dots {
  display: flex;
  gap: 8px;
  margin: 10px auto;
}

.features-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e3c463;
  transition: background-color 0.3s ease;
}

.features-dot.active {
  background-color: #9d7f38;
}

@media only screen and (max-width: 768px) {
  .features {
    padding: 30px 0;
  }

  .features .container {
    gap: 10px;
  }

  .features .title h1 {
    font-size: 26px;
    line-height: 36px;
    padding: 0 15px;
  }

  .features .section-desc {
    font-size: 14px;
    line-height: 20px;
    margin: 10px auto 0;
    padding: 0 20px;
    max-width: 100%;
  }

  .carousel-button-control {
    width: 85%;
    margin: 20px auto 10px;
  }

  .control-buttons {
    padding: 10px;
    gap: 6px;
  }

  .control-btn {
    padding: 10px;
    border-radius: 10px;
  }

  .treatment-card {
    height: auto;
    margin: 0 10px;
  }

  .treatment-card .card-image {
    height: 200px;
  }

  .treatment-card .card-content {
    padding: 15px;
  }

  .treatment-card .card-content p {
    font-size: 14px;
    line-height: 1.4;
  }

  .features-dots {
    margin: 8px auto;
  }

  .features-dot {
    width: 8px;
    height: 8px;
  }
}

.accordion__content p {
  font-size: 15px;
  line-height: 22px;
  color: #1a1a1a;
}

.info-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.info-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
}

.info-section .title {
  text-align: center;
}

.info-section .title h1 {
  font-size: 30px;
  line-height: 42px;
  color: #003366;
  font-weight: 600;
  text-align: center;
}

.info-section .section-desc {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
}

.info-section .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.tabs-container {
  display: flex;
  gap: 20px;
  width: 100%;
  align-items: center;
  padding: 0 20px;
  justify-content: center;
  margin-top: 30px;
}

.tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 380px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid #adacac;
  border-radius: 20px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn img {
  width: 20px;
  height: 20px;
}

.tab-btn span {
  color: #1a1a1a;
  font-size: 15px;
  line-height: 20px;
  text-align: left;
  font-weight: 400;
}

.tab-btn.active {
  background: linear-gradient(#656565, #000000);
  border-color: #000000;
}

.tab-btn.active span {
  color: #fff;
}

.tab-btn.active img {
  filter: brightness(0) invert(1);
}

.tab-image {
  width: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
}

.tab-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
    gap: 15px;
    padding: 0;
  }

  .tabs {
    order: 2;
    max-width: 100%;
    gap: 8px;
  }

  .tab-image {
    order: 1;
    width: 100%;
    height: 400px;
  }

  .tab-content {
    padding: 0;
  }

  .tab-content img {
    object-fit: cover;
  }

  .tab-btn {
    padding: 15px 15px;
    gap: 10px;
  }

  .tab-btn img {
    width: 18px;
    height: 18px;
  }

  .tab-btn span {
    font-size: 13px;
    line-height: 18px;
  }

  .info-section {
    padding: 40px 0;
  }

  .info-section .container {
    gap: 15px;
  }

  .info-section .content {
    gap: 20px;
  }
}

.info-section .orange-btn {
  margin: 0 auto;
  max-width: 240px;
  height: 45px;
  font-size: 15px;
}

.section-title {
  text-align: center;
}

.section-title h1 {
  font-size: 34px;
  line-height: 46px;
  color: #1a1a1a;
  text-align: center;
}

.section-title h1 .highlight {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: #dac480;
}

.section-title .section-desc {
  text-align: center;
  max-width: 800px;
  margin: 20px auto;
  color: #1a1a1a;
  font-size: 15px;
  line-height: 22px;
}

.section-dark .section-title h1 {
  color: #fff;
}

.section-dark .section-title .section-desc {
  color: #fff;
}

@media only screen and (max-width: 768px) {
  .section-title {
    width: 100%;
  }

  .section-title h1 {
    font-size: 26px;
    line-height: 36px;
    padding: 0 15px;
  }

  .section-desc {
    font-size: 14px;
    line-height: 20px;
    margin: 10px auto 0;
    padding: 0 15px;
    width: 100%;
    max-width: none;
  }

  .features .section-desc {
    max-width: none;
    width: 100%;
    padding: 0 15px;
  }
}

.testimonials-section {
  background-color: #f5f5f5;
  padding: 60px 0;
}

.testimonials-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 0px 9px rgb(0 0 0 / 22%);
}

.testimonial-card .user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-card .avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

.testimonial-card .avatar.green {
  background: #4caf50;
}

.testimonial-card .avatar.blue {
  background: #2196f3;
}

.testimonial-card .avatar.purple {
  background: #9c27b0;
}

.testimonial-card .avatar.teal {
  background: #009688;
}

.testimonial-card .user-details h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.testimonial-card .rating img {
  height: 16px;
}

.testimonial-card .comment {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

@media only screen and (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }
}

@media only screen and (max-width: 768px) {
  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-height: 435px;
    overflow-y: auto;
    padding-right: 8px;
  }

  .testimonials-grid::-webkit-scrollbar {
    width: 4px;
  }

  .testimonials-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .testimonials-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .testimonial-card {
    padding: 20px;
    height: 200px;
  }
}

@media only screen and (max-width: 480px) {
  .testimonial-card {
    padding: 20px;
    height: 180px;
  }

  .testimonials-grid {
    max-height: 395px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 15px;
    width: 100%;
    overflow-x: hidden;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-content h1,
  .hero-content h1 .underline-text {
    font-size: 28px;
    line-height: 38px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 24px;
  }

  .features .container,
  .info-section .container,
  .testimonials-section .container,
  .section-2 .container,
  .section-4 .container,
  .section-6 .container,
  footer .container {
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }

  .features-grid {
    margin: 0;
    padding: 15px;
  }

  .feature-item {
    width: 100%;
  }

  .tab-image {
    width: 100%;
    height: 300px;
  }

  .testimonials-grid {
    width: 100%;
    padding-right: 5px;
  }

  .testimonial-card {
    width: 100%;
  }

  footer > .container > .faq > div > img {
    display: none;
  }

  footer > .container > .faq > div > .accordion-ctnr {
    width: 100%;
  }

  footer > .container > .footer > div {
    width: 100%;
  }

  footer > .container > .footer > div > iframe {
    width: 100%;
    height: 300px;
  }

  .section-6 > .container > .content > div:last-of-type {
    padding: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .hero-content h1,
  .hero-content h1 .underline-text {
    font-size: 24px;
    line-height: 34px;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 22px;
  }

 .hero-content ul:after{
  margin-left: auto;
  margin-right: auto;
  }

  .hero-content ul:before{
  margin-left: auto;
  margin-right: auto;
  }

  .section-title h1 {
    font-size: 24px;
    line-height: 34px;
    padding: 0 15px;
  }

  .section-desc {
    padding: 0 15px;
  }

  .tab-btn {
    padding: 15px;
  }

  .tab-btn span {
    font-size: 13px;
  }

  footer > .container > .faq > div > .accordion-ctnr .accordion__intro {
    padding: 15px;
  }

  footer > .container > .faq > div > .accordion-ctnr .accordion__intro > h4 {
    font-size: 14px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 900px) {
  footer > .container > .footer {
    align-items: center;
    text-align: center;
  }

  footer > .container > .footer > h1 {
    text-align: center;
  }

  footer > .container > .footer > img {
    margin: 0 auto;
  }

  footer > .container > .footer > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }

  footer > .container > .footer > div > .content {
    width: 100%;
  }

  footer > .container > .footer > div > .content > div {
    margin: 0 auto;
    text-align: center;
    max-width: 300px;
    width: 100%;
  }

  footer > .container > .footer > div > .content > div .social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.section-dark {
  padding: 40px 0;
}

.mobile-cta-button {
  display: none;
}

@media screen and (max-width: 768px) {
  .mobile-cta-button {
    display: block;
  }

  header nav > .container {
    justify-content: space-between;
    gap: 15px;
  }

  .mobile-cta-button .orange-btn {
    height: 40px;
    padding: 0 15px;
    font-size: 14px;
  }
}

.carousel-button-control {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.control-buttons {
  display: flex;
  justify-content: space-between;
  gap: 0;
  background: linear-gradient(#656565, #000000);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  border: 1px solid #1a1a1a;
}

.control-buttons::-webkit-scrollbar {
  display: none;
}

.control-btn {
  padding: 12px 20px;
  border: none;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: normal;
  text-align: center;
  min-width: 235px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-weight: 400;
  outline: 0;
  border: 0 !important;
}

.control-btn span {
  display: block;
  font-size: 15px;
  line-height: 1.2;
}

.control-btn.active {
  background: linear-gradient(#a9a9a9, #696969);
  color: #fff;
  border: 0;
  outline: 0;
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.treatment-slider {
  padding: 20px 40px;
  overflow: visible;
}

.treatment-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  display: flex;
  flex-direction: column;
  border: 2px solid #1a1a1a;
}

.treatment-card .card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.treatment-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-card .card-content {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  align-items: center;
}

.treatment-card .card-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
}

@media (max-width: 768px) {
  .treatment-card {
    height: 450px;
  }

  .treatment-card .card-image {
    height: 300px;
  }

  .treatment-card .card-content {
    padding: 15px;
  }
}

.swiper-slide {
  opacity: 0.3;
  transform: scale(0.85);
  transition: all 0.4s ease;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 2;
}

.swiper-slide-prev,
.swiper-slide-next {
  opacity: 0.5;
  transform: scale(0.9);
}

@media only screen and (max-width: 768px) {
  .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }

  .swiper-slide-active {
    transform: scale(1.05);
  }

  .swiper-slide-prev,
  .swiper-slide-next {
    opacity: 1;
    transform: scale(1);
  }
}

@media only screen and (max-width: 480px) {
  .control-btn span {
    font-size: 14px;
    line-height: 1.1;
  }
}

.testimonials-desc {
  margin-top: 30px;
}

.testimonials-desc p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .carousel-button-control {
    margin: 20px auto;
    gap: 20px;
    padding: 0;
    width: 100%;
  }

  .control-buttons {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
    border-radius: 15px;
    background: #fffaef;
    box-shadow: none;
  }

  .control-btn {
    width: 100%;
    min-width: unset;
    padding: 12px 15px;
    border-radius: 8px;
    text-align: center;
    align-items: center;
    background: linear-gradient(#656565, #000000);
    flex-direction: row;
    justify-content: center;
    gap: 4px;
  }

  .control-btn span {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    display: inline;
    margin-right: 4px;
  }
}

@media only screen and (max-width: 480px) {
  .carousel-button-control {
    width: 100%;
  }

  .control-btn {
    padding: 10px 15px;
  }

  .control-btn span {
    font-size: 13px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 768px) {
  .carousel-container {
    padding: 0;
    margin: 0 -15px;
    width: calc(100% + 30px);
  }

  .treatment-slider {
    padding: 15px;
  }

  .treatment-card {
    margin: 0 15px;
  }
}

.home-before {
  padding: 60px 0;
  text-align: center;
  background-color: #f5f5f5;
}
.home-before .title {
  font-size: 32px;
  margin-bottom: 50px;
  text-align: left;
}
.home-before .title:after {
  margin-top: 11px;
  display: block;
  height: 3px;
  content: "";
  width: 200px;
  background: #018ad3;
}
.home-before img {
  border-radius: 25px;
  margin-bottom: 30px;
}
.home-before a.more {
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  padding: 15px 30px;
  background: #018ad3;
  color: white;
  font-size: 18px;
  border-radius: 25px;
}
.home-before .button{
  display: flex;
  justify-content: center;
}

.home-before-slider .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  font-size: 30px;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  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;
  cursor: pointer;
}
.img-border{
  border-radius: 25px;
  box-shadow: 1px 0px 9px rgb(0 0 0 / 22%);
  max-width: 100%;
  height: auto;
}
.home-before-slider .slick-next {
  right: 0;
}
.home-video-slider .slick-arrow {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  font-size: 30px;
  border-radius: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  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;
  cursor: pointer;
}

.home-video-slider .slick-next {
  right: 0;
}

.footer a {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.4;
}
.footer a:hover{
  opacity: 0.8;
  color: #dac480;
  text-decoration: none;
}

.home-form {
  background: #f5f5f5;
  padding: 35px;
}

.home-form-inner{

}


.home-form .in{
  padding: 35px;
  width: 50%;
  margin: 0 auto;
  border: 2px solid #d9c481;
  border-radius: 15px;
  padding-top: 47px;
}

.home-form-inner .title{
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 15px;
}
.home-form-inner .desc{
  color: #fff;

  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.2;
}

.home-form-inner input[type="text"]{
  background-color: #fff;
  color: #8e8e8e;
  box-shadow: inset 0px 2px 3px #dddddd;
  -webkit-box-shadow: inset 0px 2px 3px #dddddd;
  -moz-box-shadow: inset 0px 2px 3px #dddddd;
  width: 100%;
  height: 47px;
  border: 0;
  padding: 15px;
  margin-bottom: 15px;
  border: 2px solid #bf9c4a;
  border-radius: 15px;
}

.home-form-inner input[type="tel"]{
  background-color: #fff;
  color: #8e8e8e;
  box-shadow: inset 0px 2px 3px #dddddd;
  -webkit-box-shadow: inset 0px 2px 3px #dddddd;
  -moz-box-shadow: inset 0px 2px 3px #dddddd;
  width: 100%;
  height: 47px;
  border: 0;
  padding: 15px;
  border: 2px solid #bf9c4a;
  border-radius: 15px;
}

.home-form-inner button{
  background: linear-gradient(#eec55b, #9b7b2f);
  width: 100%;
  height: 47px;
  border: 0;
  margin-bottom: 15px;
  color: #fff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 18px;
}

.radius{
  border-radius: 25px;
}

.home-form .position-relative{
  margin-bottom: 15px;
}

.home-videos {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: #f5f5f5;
}
.home-videos .head-title {
  padding: 30px 0;
  font-size: 32px;
  margin-bottom: 20px;
}
.home-videos .head-title:after {
  margin-top: 11px;
  display: block;
  height: 3px;
  content: "";
  width: 200px;
  background: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141), rgb(57, 84, 165), rgb(97, 55, 155), rgb(147, 40, 142));
}
.home-videos .item img {
  width: 100%;
}
.home-videos .item .img {
  position: relative;
  margin-top: 30px;
}
.home-videos .item .img .play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.home-videos .item .img a {
  opacity: inherit;
  display: block;
}
.home-videos .item .img .butons-btn {
  position: relative;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  text-align: center;
  font-size: 60px;
  color: #fff;
  z-index: 1;
}
.home-videos .item .desc {
  padding: 15px;
  background: #f5f5f5;
}
.home-videos .item .desc .stars {
  color: #fea41a;
  margin-bottom: 15px;
}
.home-videos .item .desc .title {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}
.home-videos .item .desc .text {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}
.home-videos a.more {
  text-align: center;
  margin: 30px auto;
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(to right, rgb(237, 34, 36), rgb(243, 91, 34), rgb(249, 150, 33), rgb(245, 193, 30), rgb(241, 235, 27) 27%, rgb(241, 235, 27), rgb(241, 235, 27) 33%, rgb(99, 199, 32), rgb(12, 155, 73), rgb(33, 135, 141), rgb(57, 84, 165), rgb(97, 55, 155), rgb(147, 40, 142));
  color: white;
  font-size: 18px;
  border-radius: 25px;
}
.home-videos .button{
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.home-about{
  padding: 30px 0;
  background-color: #f5f5f5;
}

.home-about .title{
  padding-top: 40px;
    font-size: 32px;
    margin-bottom: 20px;
}

.home-about .title:after{
  margin-top: 11px;
  display: block;
  height: 3px;
  content: "";
  width: 200px;
  background: #eed06a;
}

.home-about-desc p{
  margin-bottom: 20px;
  text-align: justify;
  margin-top: 15px;
}

.home-about img{
  border-radius: 25px;
}


.home-about-list ul {
  padding-top: 0px;
  margin-bottom: 25px;
}
.home-about-list ul li {
  list-style-type: disc;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 10px;
  margin-left: 20px;
}
.home-about-list ul li i {
  color: #000000;
  padding-right: 15px;
}

@keyframes pulse {
0% {
  transform: scale(0.95);
  box-shadow: 0 0 0 0 rgb(255 255 255 / 70%);
}

70% {
  transform: scale(1);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.863);
}

100% {
  transform: scale(0.95);
  box-shadow: 0 0 0 0 rgb(255, 255, 255);
}
}

@keyframes pulsepack {
0% {
  transform: scale(0.95);
}

70% {
  transform: scale(1);
}

100% {
  transform: scale(0.95);
}
    0% {
        text-shadow: 0 0 5px #ffe295, 0 0 10px #ffe295, 0 0 20px #ffe295, 0 0 40px #ffe295, 0 0 80px #ffe295;
    }

}


@keyframes shadow-pulse
{
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0px rgba(209, 139, 8, 0.651);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 7px 25px rgba(244, 187, 0, 0.199);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0px rgba(209, 155, 8, 0.651);
  }
}

.pulse {
  margin: 25% auto 0 auto;
  width: 280px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: rgb(248, 220, 94);
  border-radius: 50px;
  animation: shadow-pulse 1.5s infinite;
}


@keyframes buttonpulse
{
  0% {
    box-shadow: 0 0 0 0px rgba(244, 240, 0, 0.4);
  }
  100% {
    box-shadow: 0 0 7px 15px rgba(0, 112, 244, 0);
  }
}

.buttonpulse {
  margin: 5% auto 0 auto;
  width: 180px;
  padding: 5px 0;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #0070F4;
  border-radius: 20px;
  animation: buttonpulse 1.5s infinite;
}



@media screen and (max-width: 639px) and (min-width: 0px) {
.home-form {
  padding: 16px;
}
.home-form .in {margin: 0 auto;border-radius: 25px;padding: 17px 7px;width: initial;margin: 0 auto;text-align: center;padding-top: 33px;}
.home-form-inner .title {
font-size: 25px;
line-height: 1.2;
}

.home-form-inner .desc {
font-size: 17px;
line-height: 1.3;
}

.google-inner-about img{
  width: 420px;
}
}