/* Global Start */
* {
  font-family: "Roboto", sans-serif;
  font-size: calc(14px + (16 - 14) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kanit", sans-serif;
}
::-webkit-scrollbar {
  width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #1dccc9;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(50, 222, 193, 0.8);
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.btn {
  padding: 12px 35px;
  border-radius: 50px;
  transition: 0.5s ease-in-out;
}
.btn-primary {
  background-color: #1dccc9;
  border-color: #1dccc9;
  color: #222;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background-color: #222;
  border-color: #222;
  box-shadow: none;
}
.btn-secondary {
  background-color: #fe3839;
  border-color: #fe3839;
  color: #202020;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background-color: #222;
  border-color: #222;
  box-shadow: none;
}
.btn-transparent {
  background-color: #fff0;
  border: 1px solid #fff;
  color: #fff;
}
.btn-transparent:hover,
.btn-transparent:active,
.btn-transparent:focus {
  background-color: #1dccc9;
  border-color: #1dccc9;
  color: #fff;
  box-shadow: none;
}
ul li {
  list-style: none;
}
ul li i {
  color: #1dccc9;
  margin-right: 5px;
}
a {
  text-decoration: none;
}
.form-control {
  padding: 15px;
  background-color: #fff0;
  border: 1px solid #1dccc9;
  border-radius: 0;
  color: #222;
}
.form-control:focus {
  color: #222;
  background-color: #fff0;
  border-color: #1dccc9;
  box-shadow: none;
}
.form-control::placeholder {
  color: #222;
}
/* Global Start */

/* Header Start */
.logo {
  width: 300px;
}
/* Header End */

/* Home Page Start */
/* Banner Start */
.banner {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  height: 950px;
  padding-top: 8rem;
}
.banner-form-page{
    background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  height: 350px;
  padding-top: 8rem;
  display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.bannerForm {
  background-image: url(../images/form-bg.png);
  background-size: cover;
  background-position: center;
  width: 80%;
}
.bannerForm .form-label {
  color: #fff;
}
.banner h1 {
  position: relative;
  z-index: 1;
}

.banner h1:before {
  content: "";
  width: 88px;
  height: 88px;
  background: linear-gradient(#a62f7d 0%, #1dccc9 100%);
  border: 1px solid rgba(0, 0, 0, 0);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: -20px;
  z-index: -1;
  animation: floatGlow 15s ease-in-out infinite;
}

/* Animation Keyframes */
@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  }

  25% {
    transform: translateY(50px) translateX(100px) scale(1.05);
    filter: drop-shadow(7px 7px 12px rgba(136, 175, 188, 0.85));
  }

  50% {
    transform: translateY(50px) rotate(100deg);
    filter: drop-shadow(2px 9px 12px rgba(136, 175, 188, 0.85));
  }

  75% {
    transform: translateY(50px) rotate(180deg);
    filter: drop-shadow(2px 19px 22px rgba(136, 175, 188, 0.85));
  }

  100% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  }
}
.bannerForm .form-control {
  color: #fff;
  border: none;
  border-bottom: 1px solid #fff;
}
.bannerForm .form-control:focus {
  color: #fff;
  background-color: #fff0;
  border-color: #1dccc9;
  box-shadow: none;
}
.bannerForm .form-control::placeholder {
  color: #fff;
}
/* Banner End */

/* Service Type Start */
.service-carousel img {
  width: 112px !important;
}
.milestoneCircleOuter {
  background: linear-gradient(#fff 0%, #d1d1d1 100%);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  border-radius: 50%;
  width: 198px;
  height: 198px;
}
.milestoneCircleInner {
  background: linear-gradient(270deg, #a62f7d, #1dccc9);
  background-size: 400% 400%;
  border: 1px solid rgba(0, 0, 0, 0);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  border-radius: 50%;
  width: 160px;
  height: 160px;
  animation: gradientFlow 6s ease infinite;
}

/* Keyframe Animation */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.contentInner:before,
.contentInner:after {
  content: "";
  border-radius: 100px;
  position: absolute;
  border-radius: 100px;
}
.contentInner:before {
  background: linear-gradient(0deg, #fff 0%, #d1d1d1 100%);
  height: 90px;
  width: 335px;
  top: 0;
  left: -120px;
  z-index: -1;
}
.contentInner:after {
  background: linear-gradient(90deg, #a62f7d 0%, #1dccc9 100%);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  height: 80px;
  width: 200px;
  bottom: 80px;
  left: -40px;
  z-index: -2;
}
/* Service Type End */

/* Portfolio Start */
.portfolio {
  background-image: url(../images/portfolio-bg.png);
  background-size: cover;
  background-position: center;
}
.nav-tabs {
  background-color: #fff;
  border-radius: 50px;
  padding: 15px;
}
.nav-tabs .nav-link {
  border-radius: 50px;
  margin: 0 5px;
  color: #222;
  font-weight: 500;
  transition: 0.5s ease-in-out;
  padding: 0.5rem 2.5rem;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  color: #222;
  background-color: #1dccc9;
  border-color: #1dccc9;
}
.portfolio img {
  width: 100%;
  height: 415px;
  object-fit: cover;
  border-radius: 20px;
}
.portfolio .webPort img {
  object-position: top;
}

/* Portfolio End */

/* Packages Start */
.packageHeader {
  background-image: url(../images/package-header.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.packages .item {
  padding: 0 10px 25px 10px;
}
.packageBody ul {
  height: 350px;
  overflow-y: scroll;
}
.packageBody ul::-webkit-scrollbar {
  width: 5px;
}
.packageBody li {
  margin-bottom: 10px;
  color: #222;
}
.packageBody li:last-child {
  margin-bottom: 0;
}
/* .owl-item.active.center {
  z-index: 1;
}
.owl-item.active.center .packagesBox {
  transform: scale(1.1);
} */
/* Packages End */

/* Services Start */
.services {
  background-image: url(../images/services-bg.png);
  background-size: cover;
  background-position: center;
}
.serviceImg {
  height: 300px;
}
.serviceNumber {
  background: linear-gradient(#a62f7d 0%, #1dccc9 100%);
  border: 1px solid rgba(0, 0, 0, 0);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  border-radius: 50%;
  width: 150px;
  height: 150px;
  border: 15px solid #fff;
}
.serviceNumberBefore {
  background: linear-gradient(100deg, #a62f7d 0%, #1dccc9 100%);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  height: 120px;
  width: 180px;
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  position: absolute;
  top: 280px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.serviceNumberAfter {
  background: linear-gradient(#d3cdd1 0%, #f2f2f2 100%);
  height: 100px;
  width: 195px;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  position: absolute;
  bottom: 265px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}
.serviceContent {
  background: #fff;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.16));
  margin-top: -65px;
  padding-top: 6rem;
  padding-bottom: 1.5rem;
  border-radius: 0 0 40px 40px;
}
.servicesInner .serviceContent p {
  min-height: 201px;
}
.serviceContentBefore {
  background: linear-gradient(100deg, #a62f7d 0%, #1dccc9 100%);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 40px;
  width: 160px;
  border-radius: 50px;
  z-index: -1;
}
.servicesInner .col-sm-6:nth-child(even) .serviceNumberBefore {
  top: unset;
  bottom: 280px;
  border-bottom-left-radius: 150px;
  border-bottom-right-radius: 150px;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.servicesInner .col-sm-6:nth-child(even) .serviceNumberAfter {
  border-top-left-radius: 150px;
  border-top-right-radius: 150px;
  border-bottom-left-radius: unset;
  border-bottom-right-radius: unset;
  bottom: unset;
  top: 320px;
}
.servicesInner .col-sm-6:nth-child(even) .serviceContent {
  padding-top: 1.5rem;
  padding-bottom: 6rem;
  margin-top: 0;
  margin-bottom: -65px;
  border-radius: 40px 40px 0 0;
}
.servicesInner .col-sm-6:nth-child(even) .serviceContent p {
  min-height: 246px;
}
.servicesInner .col-sm-6:nth-child(even) .serviceContentBefore {
  top: -15px;
  bottom: unset;
}
/* Services End */

/* CTA Start */
.cta {
  background-image: url(../images/cta-bg.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
/* CTA End */

/* Testimonials Start */
.testimonials-carousel .quoteImg {
  width: 110px !important;
  margin-bottom: -40px;
  margin-left: 40px;
}
.testimonials-carousel .testimonialBox {
  border-radius: 20px;
  background-color: #f5f2f2;
}
.testimonials-carousel .lineImg {
  width: 213px !important;
}
.testimonials-carousel .ratingImg {
  width: 145px !important;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  /* background: #3dbbbf; */
  background: #a32c7c;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: linear-gradient(90deg, #a62f7d 40%, #1dccc9 100%);
  filter: drop-shadow(5px 5px 5px rgba(136, 175, 188, 0.75));
}
/* Testimonials End */

/* Contact Start */
/* Contact End */
/* Home Page End */

/* Footer Start */
.footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: center;
}
.footer .bannerForm {
  background-image: url(../images/contact-form-bg.png);
  width: 100%;
}
.copyright {
  background: linear-gradient(90deg, #a62f7d 20%, #1dccc9 100%);
}
/* Footer End */

/* Term & Conditions Start */
.innerBanner {
  background-image: url(../images/banner.png);
  background-size: cover;
  background-position: center;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.innerBanner h2 {
  font-size: calc(26px + (48 - 26) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
.termsCondition ul li {
  list-style: disc;
  color: #333;
  font-weight: 400;
}
.termsCondition a {
  color: #1dccc9;
  font-weight: 500;
}
/* Term & Conditions End */

/* Thank You Page Start */
.thankyouPage,
.errorPage {
  padding-top: 120px;
}
.thankyouPage svg {
  width: 35% !important;
}
.errorPage svg {
  width: 50% !important;
}
.thankyouPage h2 {
  font-size: calc(30px + (45 - 30) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #131313;
}
.thankyouPage h6 {
  font-size: calc(16px + (22 - 16) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #131313;
}
/* Thank You Page End */

/* Modal Start */
.modal-body {
  overflow: hidden;
  padding: 0;
}
.modal-body .btn-close {
  position: absolute;
  top: 0;
  right: 1%;
  color: #000;
  background-image: unset;
  padding: 0;
  width: auto;
  height: auto;
  font-size: 24px;
  opacity: 1;
  transition: 0.5s ease-in-out;
}
.btn-close:focus {
  box-shadow: none;
}
.btn-close:hover {
  color: #1dccc9;
}
.modal-body .popupRightSide {
  padding: 30px;
}
.modal-body h2,
.modal-body h2 span {
  font-size: calc(25px + (35 - 25) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 700;
  color: #131313;
}
.modal-body h2 span {
  color: #1dccc9;
}
.modal-body h5,
.modal-body h5 span {
  font-size: calc(15px + (18 - 15) * ((100vw - 360px) / (1920 - 360)));
  line-height: 1.3;
  font-weight: 500;
  color: #131313;
}
.modal-body h5 span {
  color: #1dccc9;
  font-weight: 700;
}
.popupModal .form-control {
  padding: 0.75rem 0.75rem;
}
/* Modal End */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 100;
  transition: .5sease-in-out;
}
.whatsapp-float:hover {
  color: #fff;
}
.whatsapp-float i {
  font-size: 28px;
}
.topbarnav-contact a, .topbarnav-contact h6{
color: #1dccc9;
font-size: 13px;
}
.social-icons-top a:first-child {
    margin-right: 2px;
}
.footer-social i{
    color: #fff !important;
}

i.fa-brands.fa-facebook-f {
  color: #fff;
  background-color: #4267B2;
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
transition: .3s;
}

i.fa-brands.fa-instagram {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #833ab4;
  background: linear-gradient(to right,
      #833ab4, #fd1d1d, #fcb045);
  color: #fff;
transition: .3s;
}

i.fa-brands.fa-facebook-f:hover {
    transition: .3s;
    transform: scale(1.1);
}
i.fa-brands.fa-instagram:hover {
    transition: .3s;
    transform: scale(1.1);
}
@media(max-width:450px){
    i.fa-brands.fa-instagram,i.fa-brands.fa-facebook-f {
            width: 20px;
            height: 20px;
            }
}
section.serviceType {
  background: linear-gradient(270deg, rgb(29, 204, 201), rgb(166, 47, 125)) 0% 0% / 400% 400%;
  animation: 6s ease 0s infinite normal none running gradientFlow;
}
.serviceBox .serviceNumber {
    animation: 6s ease 0s infinite normal none running gradientFlow;
    background: linear-gradient(270deg, rgb(166, 47, 125), rgb(29, 204, 201)) 0% 0% / 400% 400%;
}
section.about a.btn.btn-secondary{
    background: linear-gradient(270deg, rgb(166, 47, 125), rgb(29, 204, 201)) 0% 0% / 100% 400%;
    border: none;
    }
    @media(max-width:425px){
        .map-top-header{
            display: none;
        }
    }