@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Gotu&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden !important;
}

::selection {
  color: black;
  background-color: #fff;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input:focus {
  outline: 0;
}

body {
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Gotu", sans-serif;
}

html {
  scroll-behavior: smooth;
}

header {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  transition: ease 1s all;
}
header .parent {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1440px;
  z-index: 1000;
  gap: 4rem;
  margin: 0 auto;
}
header .parent a.logo {
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 999;
}
header .parent .hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  color: #fff;
}
header .parent .hamburger::before {
  content: "☰";
  font-size: 2.5rem;
}
header .parent .hamburger.open::before {
  content: "×";
  font-size: 2.5rem;
}
header .parent .mobileMenu {
  display: flex;
}
header .parent .mobileMenu ul {
  list-style: none;
  display: flex;
  gap: 4rem;
}
header .parent .mobileMenu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2em;
  display: block;
  width: max-content;
}
header .parent .mobileRight {
  width: 100%;
  text-align: end;
}
header .parent .mobileRight a {
  color: #db3722;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 2em;
  padding: 0.7em 2.5em;
  font-size: 1.3em;
}
header.fixedHeader {
  background-color: #db3722;
}
header .forMob {
  display: none;
}

@media (max-width: 767px) {
  .parent {
    width: 100% !important;
    padding: 2rem 1rem !important;
  }
  .parent .hamburger {
    display: block !important;
    color: #fff;
  }
  .parent .hamburger.open {
    color: #fff !important;
  }
  .parent .mobileMenu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-image: url("../assets/img/hamburger-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    padding: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease-in-out;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
  }
  .parent .mobileMenu ul {
    flex-direction: column;
    gap: 3rem !important;
    justify-content: unset;
    align-items: start;
    margin-top: 5rem;
    padding-left: 2rem;
  }
  .parent .mobileMenu ul li a {
    color: #000;
    font-size: 1.5rem;
  }
  .parent .mobileMenu.open {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
  }
  .parent .mobileRight a {
    padding: 0.5rem 1rem !important;
    font-weight: 500;
  }
  .parent img {
    width: 100%;
  }
  .forMob {
    display: block !important;
  }
  .forMob a {
    color: #db3722 !important;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 2em;
    padding: 0.7em 1.5em;
    font-size: 1.3em;
    font-weight: 400;
    text-transform: capitalize;
  }
}
@media (max-width: 375px) {
  .parent {
    gap: 2rem !important;
  }
  .parent a.logo {
    width: 400px !important;
    text-align: center;
  }
  .parent .mobileRight {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .parent a.logo {
    width: 184px !important;
  }
}
footer {
  color: white;
  padding: 20rem 0 4em 0;
  background-image: url("../assets/img/footer-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: unset;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: end;
  max-width: 1700px;
}
footer .container .copyright {
  border-radius: 30px;
  border: 0.5px solid #f5662e;
  padding: 0.5em 1em;
  color: #ffc68f;
}
footer .container div {
  text-align: center;
}
footer .container div ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 1rem;
}
footer .container div ul li {
  border: 0.1em solid #f5662e;
  border-radius: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}
footer .container div ul li a {
  display: contents;
}
footer .container div ul li a img {
  width: 20px;
}
footer .container div ul li:hover {
  background-color: #fff;
}
footer .container div ul li:hover a img {
  filter: brightness(1) invert(1);
}
footer .container a,
footer .container p {
  color: #fff;
  font-size: 1.1em;
  font-weight: 300;
  text-align: center;
}

@media (max-width: 767px) {
  footer {
    background-image: url("../assets/img/footer-banner-mob.png");
    padding: 6rem 0 4rem;
  }
  footer .container {
    flex-direction: column;
    align-items: center;
    gap: 2em;
  }
  footer .container .copyright {
    order: 2;
  }
  footer .container #backToTop {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.container-fluid {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #3498db;
  color: white;
  padding: 0.625 1.25;
  border: none;
  border-radius: 5px;
}

nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 300;
  position: relative;
}
nav ul li a:hover {
  color: #309baf;
}
nav ul li a::before {
  position: absolute;
  content: "";
  background-image: url("../assets/img/active.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 1rem;
  height: 1rem;
  left: -26px;
  top: 4px;
  opacity: 0;
}
nav ul li a.active {
  font-weight: 500 !important;
}
nav ul li a.active::before {
  opacity: 1;
}

body.menu-open {
  overflow: hidden !important;
}

main .heroBanner {
  background-image: url("../assets/img/hero-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
main .heroBanner .objects img {
  position: absolute;
}
main .heroBanner .objects img:first-child {
  top: 10%;
  left: -320px;
}
main .heroBanner .objects img:nth-child(2) {
  bottom: 0;
  left: 250px;
}
main .heroBanner .objects img:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 18%;
}
main .heroBanner .objects img:nth-child(4) {
  top: 300px;
  right: 100px;
}
main .heroBanner .heroBannerContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 15rem 8rem 10rem;
  text-align: center;
}
main .heroBanner .heroBannerContent h1 {
  font-size: clamp(3.5rem, 1.3846rem + 3.0769vw, 6rem);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2em;
  position: relative;
  z-index: 99;
}
main .heroBanner .heroBannerContent p {
  font-size: clamp(1rem, 0.8769rem + 0.6154vw, 1.8rem);
  color: #fff;
  font-weight: 200;
  width: 60%;
  line-height: 1.6em;
  margin-bottom: 2em;
}
main .heroBanner .heroBannerContent a {
  border: 2px solid #fff;
  border-radius: 2em;
  padding: 0.7em 1.2em;
  color: #fff;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  font-weight: 200;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  z-index: 99;
}
main .heroBanner .heroBannerContent a:hover {
  color: #db3722;
}
main .heroBanner .heroBannerContent a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 2em;
}
main .heroBanner .heroBannerContent a:hover:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}
main .heroBanner .heroBannerContent .scrollMouse {
  margin-top: 2rem;
  position: relative;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
  cursor: pointer;
}
main .heroBanner .heroBannerContent .scrollMouse::before {
  position: absolute;
  content: "";
  background-color: #ccc9ca;
  width: 1px;
  height: 130px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 105px;
}
@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
main .aboutUs {
  display: grid;
  grid-template-columns: 200px minmax(150px, 1fr) 120px;
  gap: 10em;
  text-align: center;
  padding: 7em 0 0 0;
}
main .aboutUs h2 {
  font-size: clamp(1.625rem, 1.3462rem + 1.3942vw, 3.4375rem);
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
}
main .aboutUs h2 span {
  color: #cacaca;
  font-weight: 500;
}
main .aboutUs p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  font-weight: 300;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 2em;
}
main .aboutUs a {
  color: #db3722;
  text-decoration: underline;
}
main .aboutUs2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
  padding: 7em 0 2em 0;
  align-items: center;
  grid-row-gap: 10px;
  border-bottom: 1px solid #cacaca;
}
main .aboutUs2 .aboutUs2Content {
  background-color: #fafafa;
  padding: 3em;
  border-radius: 1em;
  /* Basic styles */
  /* Desktop layout */
}
main .aboutUs2 .aboutUs2Content .subText {
  color: #db3722;
  font-size: 2rem;
  font-weight: 600;
}
main .aboutUs2 .aboutUs2Content h2 {
  font-size: 3.5rem;
  color: #7f7f7f;
  font-weight: 500;
  line-height: 1.2em;
  margin-top: 0.7em;
  padding-right: 8rem;
}
main .aboutUs2 .aboutUs2Content p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #7f7f7f;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 1em;
}
main .aboutUs2 .aboutUs2Content .feature-wrapper {
  padding: 20px;
  text-align: center;
}
main .aboutUs2 .aboutUs2Content .feature-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 20px;
}
main .aboutUs2 .aboutUs2Content .tab-btn {
  background: #eee;
  border: none;
  border-radius: 50%;
  padding: 10px;
  opacity: 0.5;
}
main .aboutUs2 .aboutUs2Content .tab-btn.active {
  background: #d33;
  opacity: 1;
}
main .aboutUs2 .aboutUs2Content .features {
  display: flex;
  flex-direction: column;
  gap: 5.4em;
  margin-top: 2em;
}
main .aboutUs2 .aboutUs2Content .features #feature1 span {
  background-color: #db3722;
  width: 75px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 2em;
}
main .aboutUs2 .aboutUs2Content .features #feature1 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #db3722;
  margin: 0.8em 0 0.5em;
}
main .aboutUs2 .aboutUs2Content .features #feature2 span {
  background-color: #edaa29;
  width: 75px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 2em;
}
main .aboutUs2 .aboutUs2Content .features #feature2 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #edaa29;
  margin: 0.8em 0 0.5em;
}
main .aboutUs2 .aboutUs2Content .features #feature3 span {
  background-color: #309baf;
  width: 75px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 2em;
}
main .aboutUs2 .aboutUs2Content .features #feature3 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #309baf;
  margin: 0.8em 0 0.5em;
}
main .aboutUs2 .aboutUs2Content .feature-box {
  display: none;
  max-width: 300px;
}
main .aboutUs2 .aboutUs2Content .feature-box p {
  font-size: 13px;
}
main .aboutUs2 .aboutUs2Content .feature-box.active {
  display: block;
}
@media (min-width: 767px) {
  main .aboutUs2 .aboutUs2Content .feature-tabs {
    display: none;
  }
  main .aboutUs2 .aboutUs2Content .features {
    flex-direction: row;
    justify-content: space-around;
  }
  main .aboutUs2 .aboutUs2Content .feature-box {
    display: block !important;
  }
}
main .aboutUs2 .mission span {
  color: #a5a5a5;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  font-weight: 600;
}
main .aboutUs2 .mission .imgContent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  margin-top: 4.5rem;
}
main .aboutUs2 .mission .imgContent h3 {
  font-size: 1.7rem;
  color: #309baf;
  margin: 0.8em 0 0.5em;
  font-weight: 500;
}
main .aboutUs2 .mission .imgContent p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #a5a5a5;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 1em;
}
main .aboutUs2 .mission .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5em 0 0 0;
  margin: 0;
  max-width: 900px;
}
main .aboutUs2 .mission .features-list li {
  flex: 1 1 48%;
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  padding: 0em 0 0.5rem 2em;
  font-weight: 300;
  /* Different bullet colors */
}
main .aboutUs2 .mission .features-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
  border: 2px solid #fff;
}
main .aboutUs2 .mission .features-list li.red::before {
  border-color: #db3722;
}
main .aboutUs2 .mission .features-list li.blue::before {
  border-color: #309baf;
}
main .aboutUs2 .mission .features-list li.orange::before {
  border-color: #edaa29;
}
main .aboutUs2 .mission .features-list li.gray::before {
  border-color: #a5a5a5;
}
main .ourServices {
  text-align: center;
  padding-top: 5em;
}
main .ourServices .subText {
  color: #db3722;
  font-size: 2rem !important;
  font-weight: 600;
}
main .ourServices h2 {
  font-size: 3.5rem;
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
  letter-spacing: 4px;
  text-align: center;
}
main .ourServices .ourServicesContent {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin-bottom: 4rem;
}
main .ourServices .ourServicesContent h3 {
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
  color: #7f7f7f;
  margin: 0.8em 0 0.5em;
  font-weight: 600;
}
main .ourServices .ourServicesContent p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #a5a5a5;
  font-weight: 300;
  line-height: 2.5rem;
  white-space: pre-line;
  margin-top: -2em;
}
main .ourServices .serviceList,
main .ourServices .serviceListMob {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem !important;
  gap: 1em;
}
main .ourServices .serviceList .item,
main .ourServices .serviceListMob .item {
  border: 1px solid #cacaca;
  border-radius: 2em;
  padding: 4rem 1.1rem;
  width: 20%;
  height: 350px;
}
main .ourServices .serviceList .item span,
main .ourServices .serviceListMob .item span {
  background-color: #db3722;
  width: 75px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 2em;
}
main .ourServices .serviceList .item h3,
main .ourServices .serviceListMob .item h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #db3722;
  margin: 0.8em 0 0.5em;
}
main .ourServices .serviceList .item p,
main .ourServices .serviceListMob .item p {
  font-size: 1rem;
  color: #a5a5a5;
}
main .ourServices .serviceList .item:nth-child(2) span,
main .ourServices .serviceListMob .item:nth-child(2) span {
  background-color: #db6f21;
}
main .ourServices .serviceList .item:nth-child(2) h3,
main .ourServices .serviceListMob .item:nth-child(2) h3 {
  color: #db6f21;
}
main .ourServices .serviceList .item:nth-child(3) span,
main .ourServices .serviceListMob .item:nth-child(3) span {
  background-color: #309baf;
}
main .ourServices .serviceList .item:nth-child(3) h3,
main .ourServices .serviceListMob .item:nth-child(3) h3 {
  color: #309baf;
}
main .ourServices .serviceList .item:nth-child(4) span,
main .ourServices .serviceListMob .item:nth-child(4) span {
  background-color: #edaa29;
}
main .ourServices .serviceList .item:nth-child(4) h3,
main .ourServices .serviceListMob .item:nth-child(4) h3 {
  color: #edaa29;
}
main .ourServices .serviceListMob .item {
  border: 1px solid #cacaca;
  border-radius: 2em;
  padding: 3rem 1.1rem;
  height: 100%;
  margin: 0 2rem;
}
main .bg-grey {
  background-color: #fafafa;
  margin-top: 10em;
  margin-bottom: 2em;
  padding: 5em 0;
}
main .pricing .imgContent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  padding: 0em 0 3em 0;
  border-bottom: 1px solid #cacaca;
}
main .pricing .imgContent span {
  color: #db3722;
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
  font-weight: 600;
  font-size: 1.8rem;
}
main .pricing .imgContent h2 {
  font-size: 3.5rem;
  color: #7f7f7f;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
}
main .pricing .imgContent p {
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
  color: #7f7f7f;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 1em;
}
main .pricing .pricingTable {
  text-align: center;
}
main .pricing .pricingTable p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  font-weight: 300;
  line-height: 1.5em;
}
main .pricing .pricingTable .pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0 6rem;
}
main .pricing .pricingTable .pricing-container .plan {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  width: 375px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
  display: block;
}
main .pricing .pricingTable .pricing-container .plan .firstSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: start;
  text-align: left;
  padding: 0 1em;
}
main .pricing .pricingTable .pricing-container .plan .firstSec h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
}
main .pricing .pricingTable .pricing-container .plan .firstSec .description {
  font-size: clamp(1rem, 1.2692rem + 1.1538vw, 1.2rem);
  color: #a5a5a5;
  margin-bottom: 1rem;
  font-weight: 400;
}
main .pricing .pricingTable .pricing-container .plan .price {
  position: relative;
  border-style: solid;
  border-width: 2px;
  border-radius: 6px;
  box-shadow: 1.359px 12.929px 9px 0px rgba(90, 90, 90, 0.19);
  width: 405px;
  height: 104px;
  z-index: 189;
  left: -38px;
  display: flex;
}
main .pricing .pricingTable .pricing-container .plan .price::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 2px solid transparent;
  border-bottom: 10px solid #575454;
  left: -1px;
  top: -10px;
}
main .pricing .pricingTable .pricing-container .plan .price::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 10px solid #575454;
  right: 2px;
  top: -10px;
}
main .pricing .pricingTable .pricing-container .plan .price p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 98%;
  gap: 0.5em;
}
main .pricing .pricingTable .pricing-container .plan .price p .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: #fff;
  font-weight: 500;
}
main .pricing .pricingTable .pricing-container .plan .price p .amount {
  color: #fff !important;
  font-size: 3rem;
  font-weight: bold;
}
main .pricing .pricingTable .pricing-container .plan .price p .unit {
  font-size: 1.5rem;
  margin-left: 0.25rem;
  color: #fff;
  font-weight: 500;
  vertical-align: sub;
}
main .pricing .pricingTable .pricing-container .plan .features {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 1.5em 0;
}
main .pricing .pricingTable .pricing-container .plan .features li {
  margin: 0 0 2rem 0;
  font-weight: 300;
}
main .pricing .pricingTable .pricing-container .plan .features li:before {
  content: "✓";
  color: #309baf;
  margin-right: 0.5rem;
  font-weight: bold;
}
main .pricing .pricingTable .pricing-container .plan .selectPlan {
  border-top: 1px solid #cacaca;
}
main .pricing .pricingTable .pricing-container .plan .selectPlan button {
  margin-top: 1em;
  padding: 1rem 1rem;
  border-radius: 0.8em;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  background-color: transparent;
  border: 1px solid transparent;
}
main .pricing .pricingTable .silver h2 {
  color: #db3722;
}
main .pricing .pricingTable .silver .price {
  color: #fff;
  background-color: #db3722;
  border-color: #9f1c0b !important;
}
main .pricing .pricingTable .silver .price p {
  border-top: 2px solid #ffcec8;
}
main .pricing .pricingTable .silver .selectPlan button {
  border-color: #db3722 !important;
  color: #db3722;
  background-color: #fdf5f4 !important;
}
main .pricing .pricingTable .diamond {
  background-color: #f6fcff !important;
  transform: scale(1.05);
  z-index: 2 !important;
}
main .pricing .pricingTable .diamond .firstSec h2 {
  color: #309baf;
}
main .pricing .pricingTable .diamond .price {
  color: #fff;
  background-color: #309baf;
  border-color: #1d7e90 !important;
}
main .pricing .pricingTable .diamond .price p {
  border-top: 2px solid #c3f6ff;
}
main .pricing .pricingTable .diamond .selectPlan button {
  border-color: #309baf !important;
  color: #309baf;
  background-color: #ecf7fb !important;
}
main .pricing .pricingTable .diamond .mostPopular {
  margin-bottom: 3em;
}
main .pricing .pricingTable .diamond .mostPopular a {
  background: #2e2f77;
  color: white;
  padding: 0.5em 1.2em;
  border-radius: 20px;
  font-weight: 300;
  box-shadow: 0 10px 10px #d3d7da;
}
main .pricing .pricingTable .gold .firstSec h2 {
  color: #edaa29;
}
main .pricing .pricingTable .gold .price {
  background-color: #edaa29 !important;
  border-color: #bf9139 !important;
}
main .pricing .pricingTable .gold .price p {
  border-top: 2px solid #f9eacb;
}
main .pricing .pricingTable .gold .selectPlan button {
  border-color: #edaa29 !important;
  color: #edaa29;
  background-color: #fefbf4 !important;
}
main .pricing .pricingTable .customPlanNote p {
  padding: 0.5em 1.2em;
  border: 1px solid #edaa29;
  border-radius: 0.7rem;
  background-color: #f9f6ef;
  width: 910px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
main .pricing .pricingTable .customPlanNote p a {
  background-color: #eff1ec;
  color: #309baf;
  border: 1px solid #309baf;
  border-radius: 0.5rem;
  padding: 0.2rem 0.7rem;
  font-weight: 600;
}
main .work p {
  color: #db3722;
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
  font-weight: 600;
  text-align: center;
}
main .work .workContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5em 0 0 0;
}
main .work .workContent h2 {
  font-size: 3.5rem;
  color: #edaa29;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
main .work .workContent h3 {
  font-size: 3.5rem;
  color: #a5a5a5;
  font-weight: 400;
  margin-top: 3rem;
  line-height: 1.4;
}
main .work .workContent h3 span.mob {
  display: none;
}
main .work .workContent h3 span.desktop {
  display: block;
}
main .work .workContent .portfolio {
  position: relative;
}
main .work .workContent .portfolio ul {
  text-align: center;
}
main .work .workContent .portfolio ul li {
  grid-template-columns: 1fr 1fr;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem !important;
}
main .work .workContent .portfolio ul li img {
  transform: scale(0) translateY(100px);
  opacity: 0;
  position: relative;
  transition: all 0.3s ease;
}
main .work .workContent .portfolio ul li:nth-child(2),
main .work .workContent .portfolio ul li:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 6rem;
}
main .work .workContent .portfolio ul li:nth-child(3) {
  padding: 0 12rem;
}
main .work .workContent .portfolio ul li:last-child {
  padding: 0 21rem;
}
main .work .workContent .portfolio p {
  font-size: clamp(1rem, 1.1538rem + 0.2308vw, 1.2rem) !important;
  color: #000;
  font-weight: 400;
  margin-top: 1rem;
}
main .work .workContent .portfolio .lamp {
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
}
main .work .workContent .portfolio::before {
  position: absolute;
  content: "";
  background-image: url("/assets/img/stars.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 3%;
  height: 30px;
}
main .btm {
  padding: 0em 0 3em 0;
  border-bottom: 1px solid #cacaca;
}
main .contact {
  text-align: center;
  padding-top: 5em;
}
main .contact span {
  color: #db3722;
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem) !important;
  font-weight: 600;
}
main .contact h2 {
  font-size: clamp(1.5rem, 1.2692rem + 1.1538vw, 3rem);
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
  text-align: center;
  margin-bottom: 2em;
}
main .contact .form {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: minmax(200px, 500px) 1fr;
}
main .contact .form article {
  background-image: url("../assets/img/contact.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top-left-radius: 2em;
  border-bottom-left-radius: 2em;
  padding: 2rem 5rem;
}
main .contact .form article h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 2em;
}
main .contact .form article a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-size: 1.33rem;
}
main .contact .form article img {
  width: auto;
}
main .contact .form .inner {
  padding: 3em;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2em;
  border: 1px solid #cacaca;
  border-top-right-radius: 2em;
  border-bottom-right-radius: 2em;
  border-left: 0;
}
main .contact .form .inner p {
  text-align: left;
  color: #494949;
}
main .contact .form .inner .form-container {
  /* Hide mobile dropdown by default */
}
main .contact .form .inner .form-container .form-section {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(auto, 15%) minmax(auto, 85%);
  align-items: center;
}
main .contact .form .inner .form-container .form-section .form-section-label {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
main .contact .form .inner .form-container .form-section .option-group {
  display: flex;
  gap: 8px;
}
main .contact .form .inner .form-container .form-section .option-group .option-btn {
  flex: 1;
  padding: 15px 10px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: white;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  text-align: center;
}
main .contact .form .inner .form-container .form-section .option-group .option-btn.selected {
  border-color: #2aacb9;
  color: #2aacb9;
}
main .contact .form .inner .form-container .basic-info {
  margin-top: 30px;
  margin-bottom: 20px;
}
main .contact .form .inner .form-container .basic-info .basic-info-header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: start;
  margin-bottom: 25px;
  color: #888;
  font-size: 14px;
}
main .contact .form .inner .form-container .basic-info .basic-info-header svg {
  margin-right: 8px;
}
main .contact .form .inner .form-container .input-group {
  flex: 1;
  position: relative;
  margin-bottom: 35px;
  display: grid;
  grid-template-columns: minmax(auto, 15%) minmax(auto, 85%);
  align-items: center;
}
main .contact .form .inner .form-container .input-group input,
main .contact .form .inner .form-container .input-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
  font-size: 14px;
  outline: none;
  background: transparent;
}
main .contact .form .inner .form-container .input-group input:focus,
main .contact .form .inner .form-container .input-group textarea:focus {
  border-bottom-color: #309baf;
}
main .contact .form .inner .form-container .input-group label {
  display: block;
  color: #666;
  font-size: 14px;
}
main .contact .form .inner .form-container .send-btn {
  background-color: #309baf;
  color: #fff;
  border: none;
  border-radius: 0.7em;
  padding: 0.8em 1em;
  width: 200px;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  cursor: pointer;
  margin-top: 10px;
}
main .contact .form .inner .form-container .send-btn:hover {
  background-color: #db3722;
}
main .contact .form .inner .form-container .option-dropdown {
  display: none;
}
main .contact .form .inner .input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
main .contact .form .inner .input-row .input-group:first-child,
main .contact .form .inner .input-row .input-group:nth-child(2) {
  flex: 1;
  position: relative;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: minmax(auto, 31%) minmax(auto, 68%);
  align-items: center;
}
main .contact button.disable {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}
main #formMessage {
  user-select: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
main #formMessage.fade-out {
  opacity: 0;
}
main .icon {
  display: flex;
  gap: 0.5rem;
}
main .success {
  color: #17a52e;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  width: 250px;
}
main .success p {
  color: #17a52e !important;
  font-size: 18px;
  font-weight: 600;
}
main .error {
  color: red;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  border: 1px solid #eaeaea;
  width: 250px;
}
main .error p {
  color: red !important;
  font-size: 20px;
}
main .btn-Message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main .slider,
main .mobilePlanSelector,
main .mobilePlans,
main .serviceListMob,
main ul.tabs,
main .tabs-content,
main p.mob,
main .custom-select-wrapper {
  display: none !important;
}
main .serviceListMob ul.slick-dots {
  display: flex;
  gap: 0.3rem;
  position: absolute;
  top: 110%;
  display: flex;
  justify-content: center;
  width: 100%;
}
main .serviceListMob ul.slick-dots button {
  border-radius: 100%;
  width: 13px;
  height: 13px;
  font-size: 0;
  background-color: #d6d6d6;
  border: 0;
}
main .serviceListMob ul.slick-dots .slick-active button {
  background-color: #309baf !important;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  main .heroBanner .objects .object2 {
    left: 0 !important;
  }
  main .aboutUs {
    gap: 0rem;
    grid-template-columns: 200px minmax(150px, 1fr) 0px;
  }
  main .aboutUs2 {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
  main .ourServices .ourServicesContent p {
    white-space: unset;
    margin-top: 0;
  }
  main .ourServices .serviceList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem !important;
  }
  main .ourServices .serviceList .item {
    width: 100%;
  }
  main .bg-grey {
    margin-top: 5rem;
  }
  main .bg-grey .pricing .imgContent {
    flex-direction: column;
  }
  main .bg-grey .pricing .pricingTable .desktopPlans {
    display: none;
  }
  main .bg-grey .pricing .pricingTable .customPlanNote p {
    flex-direction: column;
    width: 100%;
  }
  main .custom-select-wrapper,
  main .mobilePlans {
    display: block !important;
  }
  main .custom-select-wrapper {
    position: relative;
    width: 45%;
    margin: 2rem auto;
    display: block !important;
  }
  main .custom-select-wrapper .custom-select {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 1rem;
    background: white;
    cursor: pointer;
    box-shadow: 3.564px 1.816px 31.5px 3.5px rgba(90, 90, 90, 0.15);
    justify-content: space-between;
  }
  main .custom-select-wrapper .custom-select div {
    display: flex;
    width: 50%;
    align-items: center;
  }
  main .custom-select-wrapper .custom-select .select-icon {
    width: 30%;
    margin-right: 8px;
  }
  main .custom-select-wrapper .custom-select .selected-option {
    flex-grow: 1;
    font-size: 1.4rem;
  }
  main .custom-select-wrapper .custom-select .arrow {
    width: 25px;
  }
  main .custom-select-wrapper .custom-select.open {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  main .custom-select-wrapper .options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
  }
  main .custom-select-wrapper .options li {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  main .custom-select-wrapper .options li div {
    display: flex;
    width: 50%;
    align-items: center;
  }
  main .custom-select-wrapper .options li img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  main .custom-select-wrapper .options li:hover {
    background-color: #f3f3f3;
  }
  main .custom-select-wrapper .options li.selected {
    background-color: #f6f6f6;
    font-weight: 600;
    position: relative;
  }
  main .custom-select-wrapper .options li.selected::after {
    content: "✔";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ff4f4f;
  }
  main .mobilePlanSelector,
  main .mobilePlans {
    display: inline-block !important;
  }
  main .mobilePlanSelector .plan,
  main .mobilePlans .plan {
    display: none !important;
    width: 320px !important;
  }
  main .mobilePlanSelector .plan .price,
  main .mobilePlans .plan .price {
    width: 350px !important;
  }
  main .mobilePlanSelector .plan.active,
  main .mobilePlans .plan.active {
    display: block !important;
  }
  main .work .workContent {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  main img {
    width: 100%;
  }
  main .heroBanner .heroBannerContent {
    padding: 8rem 2.5rem 5rem;
  }
  main .heroBanner .heroBannerContent h1 {
    font-weight: 600;
  }
  main .heroBanner .heroBannerContent p {
    width: 80%;
    position: relative;
    z-index: 99;
  }
  main .heroBanner .heroBannerContent a {
    padding: 1rem 2rem;
  }
  main .heroBanner .heroBannerContent .scrollMouse::before {
    height: 100px;
    top: 50px;
  }
  main .heroBanner .objects img:nth-child(2) {
    bottom: 24px;
    left: -250px;
  }
  main .heroBanner .objects img:nth-child(3) {
    bottom: 27px;
    right: 11px !important;
    height: 473px;
    object-fit: contain;
    width: 137px;
  }
  main .heroBanner .objects .object4 {
    display: none;
  }
  main .aboutUs {
    padding-top: 5rem !important;
  }
  main .aboutUs p {
    width: 84%;
    margin: 0 auto;
    padding: 1rem 0;
  }
  main .aboutUs img {
    width: auto;
    margin-left: 53px;
  }
  main .aboutUs h2 {
    font-size: 1.8rem;
  }
  main .aboutUs p span {
    display: none;
  }
  main .aboutUs2 .aboutUs2Content h2 {
    padding-right: 0 !important;
    font-size: 1.8rem;
  }
  main .aboutUs2 .subText {
    font-size: 1.4rem !important;
  }
  main .aboutUs2 .mission span {
    font-size: 1.2rem !important;
  }
  main .aboutUs2 .mission .imgContent {
    flex-direction: column;
  }
  main .aboutUs2 .mission .imgContent h3 {
    font-size: 1.4rem !important;
    line-height: 1.5;
    width: 87%;
    margin: 0 auto;
    font-weight: 600;
  }
  main .aboutUs2 .mission .imgContent p {
    color: #250202;
  }
  main .aboutUs,
  main .aboutUs2 {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1rem;
    text-align: center;
  }
  main .aboutUs .mission .features-list,
  main .aboutUs2 .mission .features-list {
    grid-template-columns: 1fr;
    text-align: left;
  }
  main .aboutUs .mission .features-list li,
  main .aboutUs2 .mission .features-list li {
    padding-bottom: 1rem;
  }
  main .aboutUs .mission .features-list li:nth-child(8),
  main .aboutUs2 .mission .features-list li:nth-child(8) {
    display: none;
  }
  main .aboutUs .mission .features-list li::before,
  main .aboutUs2 .mission .features-list li::before {
    top: 3px !important;
  }
  main .work .workContent {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 1rem;
  }
  main .work .workContent h3 {
    margin-top: 1rem;
  }
  main .work .workContent div:first-child img {
    width: 85%;
  }
  main .work .workContent .portfolio ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  main .work .workContent .portfolio ul li:first-child img:first-child,
  main .work .workContent .portfolio ul li:first-child img:nth-child(2) {
    width: 55%;
  }
  main .work .workContent .portfolio ul li:nth-child(2) img:first-child,
  main .work .workContent .portfolio ul li:nth-child(2) img:nth-child(2),
  main .work .workContent .portfolio ul li:nth-child(2) img:nth-child(3) {
    width: 30%;
  }
  main .work .workContent .portfolio ul li:nth-child(3) img:first-child,
  main .work .workContent .portfolio ul li:nth-child(3) img:nth-child(2),
  main .work .workContent .portfolio ul li:nth-child(3) img:nth-child(3),
  main .work .workContent .portfolio ul li:nth-child(3) img:nth-child(4) {
    width: 15%;
  }
  main .work .workContent .portfolio ul li:nth-child(4) img:first-child,
  main .work .workContent .portfolio ul li:nth-child(4) img:nth-child(2) {
    width: 10%;
    padding: 0 !important;
  }
  main .work .workContent .portfolio ul li {
    gap: 0.3rem;
    padding: 0 1rem !important;
  }
  main .work .workContent .portfolio .lamp {
    width: auto;
  }
  main .ourServices .subText {
    font-size: 1.4rem !important;
  }
  main .ourServices h2 {
    font-size: 1.8rem;
  }
  main .ourServices .ourServicesContent {
    flex-direction: column;
    text-align: center;
  }
  main .ourServices .ourServicesContent p {
    white-space: unset;
    margin-top: 0;
    line-height: 1.5rem;
    color: #524e4e;
  }
  main img.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  main .next {
    right: 0px;
  }
  main .prev {
    left: 0px;
  }
  main .bg-grey {
    margin-top: 5rem;
  }
  main .serviceList {
    display: none !important;
  }
  main .serviceList div span img {
    width: auto;
  }
  main .serviceListMob {
    display: block !important;
  }
  main .serviceListMob img {
    width: auto;
  }
  main main .serviceList > div:last-child {
    margin-right: 1rem; /* ✅ spacing at end */
  }
  main .serviceList::-webkit-scrollbar {
    display: none; /* hide scrollbar for cleaner mobile look */
  }
  main .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  main .slider-controls button {
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  main .dots {
    display: flex;
    gap: 6px;
  }
  main .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    cursor: pointer;
  }
  main .dots span.active {
    background: #333;
  }
  main .pricing .imgContent {
    flex-direction: column;
    text-align: center;
  }
  main .pricing .imgContent span {
    font-size: 1.4rem;
  }
  main .pricing .imgContent h2 {
    font-size: 1.8rem;
  }
  main .pricing .imgContent p {
    display: none;
  }
  main .pricing .imgContent img {
    margin: 3rem 0;
    width: 70%;
  }
  main .pricing .imgContent p.mob {
    display: block !important;
    margin-top: 0;
  }
  main .pricing .pricingTable .customPlanNote p {
    width: 200px;
    flex-direction: column;
    width: 100%;
  }
  main .pricing .pricingTable .customPlanNote p strong {
    border-bottom: 1px solid #edaa29;
    width: 100%;
    padding-bottom: 0.5rem;
  }
  main .pricing .pricingTable .customPlanNote p a {
    padding: 0.5rem 1.7rem;
  }
  main .pricing .firstSec img {
    width: auto;
  }
  main .work p {
    font-size: 1.4rem;
  }
  main .work .workContent h2,
  main .work .workContent h3 {
    font-size: 1.8rem;
    line-height: normal;
  }
  main .work .workContent h2 .mob,
  main .work .workContent h3 .mob {
    display: block !important;
  }
  main .work .workContent h2 .desktop,
  main .work .workContent h3 .desktop {
    display: none !important;
  }
  main .contact span {
    font-size: 1.4rem !important;
  }
  main .contact h2 {
    font-size: 1.8rem !important;
    line-height: 1.5;
  }
  main .contact .form {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  main .contact .form article {
    order: 2;
    border-radius: 1rem;
    background-position: top;
    background-size: unset;
    padding: 3rem 2rem;
    background-image: none;
    background: #a6b0b2;
    background: -webkit-linear-gradient(0deg, rgb(166, 176, 178) 0%, rgb(118, 174, 188) 100%);
    background: -moz-linear-gradient(0deg, rgb(166, 176, 178) 0%, rgb(118, 174, 188) 100%);
    background: linear-gradient(0deg, rgb(166, 176, 178) 0%, rgb(118, 174, 188) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#A6B0B2", endColorstr="#76AEBC", GradientType=0);
  }
  main .contact .form article h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  main .contact .form .inner {
    border-radius: 2rem;
    border-left: 2px solid #cacaca;
  }
  main .contact .form .inner .input-row {
    flex-direction: column;
  }
  main .contact .form .inner .input-row .input-group {
    grid-template-columns: 1fr !important;
  }
  main .contact .form .inner .form-container .input-group {
    grid-template-columns: 1fr !important;
  }
  main .contact .form .inner .form-container .form-section {
    grid-template-columns: 1fr;
  }
  main .contact .form .inner .form-container .form-section .option-group {
    flex-direction: column;
  }
  main .contact .form .inner .form-container #select-services,
  main .contact .form .inner .form-container #plan-budget,
  main .contact .form .inner .form-container #selected-plan {
    display: none !important;
  }
  main .contact .form .inner .form-container .option-dropdown {
    display: block;
  }
  main .contact .form .inner .form-container .option-dropdown select {
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background: transparent;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-position-y: 11px;
  }
  main .contact .form .inner p {
    display: flex;
    align-items: center;
  }
  main .contact .form .inner p img {
    width: auto;
  }
  main .contact .send-btn {
    width: 100% !important;
    padding: 1rem !important;
  }
  main .slider {
    position: relative;
    width: 600px;
    height: 300px;
    overflow: hidden;
    margin: auto;
  }
  main .slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  main .slider .slides .slide {
    min-width: 100%;
    height: 300px;
    object-fit: cover;
  }
  main .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  main .pricing-container .firstSec {
    padding: 0 !important;
  }
  main .pricing-container .description {
    font-size: 14px !important;
  }
  main .mobilePlanSelector {
    display: block !important;
    width: 100%;
    margin: 2rem 0 1rem;
    text-align: center;
  }
  main .mobilePlanSelector select {
    font-size: 1.1rem;
    padding: 0.5em 1em;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 3.564px 1.816px 31.5px 3.5px rgba(90, 90, 90, 0.15);
    width: 85%;
    padding: 1rem;
    border-radius: 1rem;
  }
  main .custom-select-wrapper {
    position: relative;
    width: 85%;
    margin: 2rem auto;
    display: block !important;
  }
  main .custom-select-wrapper .custom-select {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 1rem;
    padding: 1rem;
    background: white;
    cursor: pointer;
    box-shadow: 3.564px 1.816px 31.5px 3.5px rgba(90, 90, 90, 0.15);
    justify-content: space-between;
  }
  main .custom-select-wrapper .custom-select div {
    display: flex;
    width: 50%;
    align-items: center;
  }
  main .custom-select-wrapper .custom-select .select-icon {
    width: 30%;
    margin-right: 8px;
  }
  main .custom-select-wrapper .custom-select .selected-option {
    flex-grow: 1;
    font-size: 1.4rem;
  }
  main .custom-select-wrapper .custom-select .arrow {
    width: 25px;
  }
  main .custom-select-wrapper .custom-select.open {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  main .custom-select-wrapper .options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
  }
  main .custom-select-wrapper .options li {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  main .custom-select-wrapper .options li div {
    display: flex;
    width: 50%;
    align-items: center;
  }
  main .custom-select-wrapper .options li img {
    width: 50px;
    height: 50px;
    margin-right: 8px;
  }
  main .custom-select-wrapper .options li:hover {
    background-color: #f3f3f3;
  }
  main .custom-select-wrapper .options li.selected {
    background-color: #f6f6f6;
    font-weight: 600;
    position: relative;
  }
  main .custom-select-wrapper .options li.selected::after {
    content: "✔";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #ff4f4f;
  }
  main .mobilePlanSelector,
  main .mobilePlans {
    display: inline-block !important;
  }
  main .mobilePlanSelector .plan,
  main .mobilePlans .plan {
    display: none !important;
    width: 320px !important;
  }
  main .mobilePlanSelector .plan .price,
  main .mobilePlans .plan .price {
    width: 350px !important;
  }
  main .mobilePlanSelector .plan.active,
  main .mobilePlans .plan.active {
    display: block !important;
  }
  main .feature-wrapper,
  main .desktopPlans {
    display: none !important;
  }
  main ul.tabs {
    margin: 2rem 0;
    padding: 0px;
    list-style: none;
    display: flex !important;
    background-color: #fff;
    border-radius: 2rem;
    padding: 0.5rem;
    justify-content: space-between;
    align-items: center;
    box-shadow: 3.564px 1.816px 31.5px 3.5px rgba(90, 90, 90, 0.15);
  }
  main ul.tabs li {
    background: #eaeaea;
    color: #222;
    padding: 15px 28px;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  main ul.tabs li img {
    filter: invert(1);
    width: 80%;
  }
  main ul.tabs li:nth-child(1).current {
    background: #db3722;
  }
  main ul.tabs li:nth-child(1).current img {
    filter: unset;
  }
  main ul.tabs li:nth-child(2).current {
    background: #edaa29;
  }
  main ul.tabs li:nth-child(2).current img {
    filter: unset;
  }
  main ul.tabs li:nth-child(3).current {
    background: #309baf;
  }
  main ul.tabs li:nth-child(3).current img {
    filter: unset;
  }
  main .tabs-content {
    display: block !important;
  }
  main .tabs-content h3 {
    font-size: 1.5rem;
  }
  main .tabs-content #tab-1 h3 {
    color: #db3722;
  }
  main .tabs-content #tab-2 h3 {
    color: #edaa29;
  }
  main .tabs-content #tab-3 h3 {
    color: #309baf;
  }
  main .tabs-content .tab-content {
    display: none;
    padding: 15px;
  }
  main .tabs-content .tab-content.current {
    display: inherit;
  }
}

@media (max-width: 375px) {
  main .heroBanner header .mobileRight a {
    padding: 0.3em !important;
    font-size: 0.9rem;
  }
  main .heroBanner .heroBannerContent p {
    width: 91%;
    position: relative;
    z-index: 99;
  }
  main .heroBanner .heroBannerContent a {
    padding: 1rem 1rem;
  }
  main .mobilePlans .plan {
    width: 280px !important;
  }
  main .mobilePlans .plan .price {
    width: 310px !important;
  }
  main ul.tabs li img {
    filter: invert(1);
    width: 11px;
  }
}
body.about {
  background: #fff;
}

body.dark-mode {
  background: #121212;
  color: #eee;
}

/* normalize.css content or import */

/*# sourceMappingURL=style.css.map */
