@import url('https://fonts.googleapis.com/css2?family=Pattaya&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: "Open Sans", serif;
  background: linear-gradient(#ffffffb3, #ffffffab), url(../images/body.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgb(255, 255, 255);
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f87ab9;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #850243;
}


a {
  text-decoration: none;
}

p {
  text-align: justify;
  font-family: "Open Sans", serif;
}

ul li {
  text-align: justify;
  font-family: "Open Sans", serif;
  font-size: 15px;
}

h4 {
  font-family: "Pattaya", sans-serif;
  font-style: normal;
}

h2 {
  font-family: "Pattaya", sans-serif;
  font-style: normal;
  font-size: 50px;
  color: #8b0045;
  font-weight: 400;
}

h2 span {
  color: #8b0045;
}

h5 {
  color: #8b0045;
  font-size: 18px;
  font-weight: 400;
}

:root {
  --color1: #b15f88;
    --color2: #b15f88;
    --color3: #b15f88;
    --color4: #b15f88;

}

.logo {
  width: 280px;
  border-radius: 10px;
}

.topbar {
  background: linear-gradient(90deg, #ee70af, #f87ab9, #f574b5);
  padding-top: 5px;
  padding-bottom: 5px;



}

.topbar p {
  margin-bottom: 0px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  font-family: "Open Sans", serif;
  font-style: normal;
  text-align: center;

}

.topbar p a {
  color: #000;
}

.navbar-light .navbar-nav .nav-link {
  color: #000;
  font-size: 16px;
  font-weight: 500;

}





.dropdown-item.active,
.dropdown-item:active {
  background-color: #eb6aa6;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-color: #000000;
}

.about .card {
  background: linear-gradient(45deg, #c782a4, #c782a4, #eb6aa6);
  margin: 10px;
  padding: 10px;
}

.about .card i {
  text-align: center;
  font-size: 25px;
  color: #000;
  background: linear-gradient(90deg, #c94084, #c782a4, #b8477c);
  padding: 13px 10px;
  margin: 5px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.about .card p {
  font-size: 15px;
  font-weight: 600;
  text-align: center;

}

.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .show>.nav-link {
  color: #8b0045 !important;
  font-weight: 700;
}

.section-ban{
  background: linear-gradient(97deg, #d361cabd, #d361caa6), url(../images/bannerlower.png);
  padding-top: 150px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

}

.section-ban h2{
  color: #fff;


}


.contact-banner {
  padding-top: 160px;
  padding-bottom: 160px;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(97deg, #d361ca1f, #d361ca99), url(../images/about_bg.jpg);
}

.contact-banner h2 {
  color: #000000;
  font-size: 35px;
  
  
  font-optical-sizing: auto;
  font-style: normal;
}

.contact-home {
  color: #000;
}




.serviceBox {
  color: #555;
  text-align: center;
  padding: 0 10px 20px;
  border-radius: 30px 30px;
  position: relative;
  border: 3px solid var(--color1);
  margin: 50px auto 0;
  z-index: 1;
  height: 320px;
}

.serviceBox:before {
  content: "";
  background: #fff;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 25px 25px;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.serviceBox .service-icon {
  color: #fff;
  background: var(--color1);
  font-size: 40px;
  line-height: 115px;
  height: 110px;
  width: 110px;
  margin: -50px auto 30px;
  border-radius: 50%;
  position: relative;
  transition: all 0.3s;
}

.serviceBox .service-icon i {
  transform: rotateY(0deg);
  line-height: inherit;
  transition: all 0.3s ease 0s;
}

.serviceBox:hover .service-icon i {
  transform: rotateY(360deg);
}

.serviceBox .service-icon:before {
  content: "";
  border: 6px solid #fff;
  width: calc(100% - 5px);
  height: calc(100% - 5px);
  border-radius: 50% 50%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
  transform: translateX(-50%) translateY(0);
  position: absolute;
  top: 6px;
  left: 50%;
}

.serviceBox .title {
  color: var(--color1);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.serviceBox .description {
  font-size: 15px;
  line-height: 25px;
}

.serviceBox.magenta {
  border: 3px solid var(--color2);
}

.serviceBox.magenta .service-icon {
  background: var(--color2);
}

.serviceBox.magenta .title {
  color: var(--color2);
}

.serviceBox.orange {
  border: 3px solid var(--color3);
}

.serviceBox.orange .service-icon {
  background: var(--color3);
}

.serviceBox.orange .title {
  color: var(--color3);
}

.serviceBox.blue {
  border: 3px solid var(--color4);
}

.serviceBox.blue .service-icon {
  background: var(--color4);
}

.serviceBox.blue .title {
  color: var(--color4);
}

/* Call Button */

.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  left: 1rem;
  bottom: 2rem;
  background: #ec8b00;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #ffffff;
  -webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
  animation: cc-calto-action-ripple 0.6s linear infinite;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 1.2rem;
}

.call-buton .cc-calto-action-ripple:hover i {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
    box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
    box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
    box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
  }
}


/* Back To Top */

#button {
  display: inline-block;
  background-color: #FF9800;
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s,
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 25px;
  line-height: 43px;
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}



/* whatsApp Button */
.float {
  position: fixed;
  width: 3rem;
  height: 3rem;
  bottom: 100px;
  right: 26px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  font-size: 25px;
  padding: 5px;
}

.my-float {
  margin-top: 16px;
}


.testimonials #carouselExampleControls .card {
  border: 6px solid #92bcff;
  padding: 10px;
  margin: 5px;
  box-shadow: 0px 0px 0px 25px #92bcff;
  /* border-radius: 28px; */
  height: 280px;
}

.testimonials #carouselExampleControls .card p {
  font-size: 15px;
}

.testimonials #carouselExampleControls .carousel-control-prev-icon {
  width: 1rem;
  height: 1rem;
}

.testimonials #carouselExampleControls .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}

.testimonials #carouselExampleControls .card h4 {
  font-size: 22px;
  color: #7aadff;
  text-align: center;
}

.contact p a {
  color: #000;
}

.contact p a:hover {
  color: #00439b;
}

.services a {
  background-color: #8b0045d1;
  color: #fff;
  padding: 5px 13px;
  margin: 5px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  border: 2px solid #ac688a;
}

.services a:hover {
  background-color: transparent;
  color: #003985;
}

.accordion-button {
  font-size: 20px;
}

footer {
  background: linear-gradient(90deg, #f0889f, #f793a3, #f592a4);
  color: #303030;
  padding-top: 50px;
}

footer p {
  color: #303030;
  font-weight: 600;

}

footer p a {
  color: #303030;
  font-weight: 600;

}

footer p a:hover {
  color: #fff;
}


@media screen and (max-width:1198px) {

  .logo {
    width: 217px;
  }


}

@media screen and (max-width:1198px) {

  .serviceBox {
    height: auto;
  }

 
}


@media screen and (max-width:480px) {
  .topbar p {
    font-size: 11px;
    font-weight: 600;
    text-align: start;
  }

  .carousel-item img {
    height: 175px;
  }

  h5 {
    font-size: 18px;
  }

  h2 {
    font-size: 35px;
    text-align: justify;
  }

  .testimonials #carouselExampleControls .card {
    height: auto;
  }

  .contact-banner {
    padding-top: 140px;
    padding-bottom: 140px;
  }

  .section-ban {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .logo {
    width: 177px;
    
  }

  
}