@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;
}

@keyframes clip-text {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
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: fit-content;
  text-align: left;
  position: relative;
  z-index: 999;
}
header .parent .hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
header .parent .hamburger img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}
header .parent .hamburger.open img {
  width: 18px;
  height: 18px;
}
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;
  transition: ease 1s all;
}
header .parent .mobileMenu ul li a:hover {
  transform: translateY(-10px);
}
header .parent .mobileRight {
  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: 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;
    transition: transform 0.4s ease-in-out;
  }
  .parent .mobileRight a {
    padding: 0.5rem 1rem !important;
    font-weight: 400;
  }
  .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;
  }
}
@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.3rem 1.7rem;
  color: #ffc68f;
  font-size: 1rem;
}
footer .container div {
  text-align: center;
}
footer .container div ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 1rem;
  margin: 1rem 0;
}
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 {
  cursor: default;
  display: contents;
}
footer .container div ul li a img {
  width: 20px;
}
footer .container div ul li:hover {
  background-color: transparent;
  color: white;
  cursor: default;
}
footer .container div ul li:hover a {
  cursor: default;
}
footer .container div .bottom-links a {
  padding: 0 0.5rem !important;
}
footer .container a,
footer .container p {
  color: #fff;
  font-size: 1.1em;
  font-weight: 300;
  text-align: center;
}
footer .container p {
  font-size: 1.3rem;
}

footer .container div .bottom-links a {
  color: #ffc68f;
  padding: 0 0.5rem !important;
}

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

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

@media (max-width: 767px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}
.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;
}

.heroBanner {
  background-image: url("../assets/img/hero-banner.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.heroBanner .objects img {
  position: absolute;
}
.heroBanner .objects img:first-child {
  top: 10%;
  left: -320px;
}
.heroBanner .objects img:nth-child(2) {
  bottom: 0;
  left: 250px;
}
.heroBanner .objects img:nth-child(3) {
  bottom: 0;
  right: 0;
  width: 18%;
}
.heroBanner .objects img:nth-child(4) {
  top: 300px;
  right: 100px;
}
.heroBanner .heroBannerContent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1em;
  padding: 15rem 8rem 10rem;
  text-align: center;
}
.heroBanner .heroBannerContent h1 {
  font-size: 75px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2em;
  position: relative;
  z-index: 99;
}
.heroBanner .heroBannerContent p {
  font-size: 26px;
  color: #fff;
  font-weight: 200;
  width: 48%;
  line-height: 1.6em;
  margin-bottom: 2em;
}
.heroBanner .heroBannerContent a {
  border: 2px solid #fff;
  border-radius: 2em;
  padding: 0.7em 1.2em;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  z-index: 99;
}
.heroBanner .heroBannerContent a:hover {
  background-color: #fff;
  color: #309baf;
}
.heroBanner .heroBannerContent .scrollMouse {
  margin-top: 2rem;
  position: relative;
  -webkit-animation: mover 1s infinite alternate;
  animation: mover 1s infinite alternate;
  cursor: pointer;
}
.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);
  }
}
.aboutUs {
  display: grid;
  grid-template-columns: 200px minmax(150px, 1fr) 120px;
  gap: 10em;
  text-align: center;
  padding: 7em 0 0 0;
}
.aboutUs h2 {
  font-size: 50px;
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
}
.aboutUs h2 span {
  color: #cacaca;
  font-weight: 500;
}
.aboutUs p {
  font-size: 18px;
  width: 90%;
  text-align: center;
  margin: 0 auto;
  color: #524e4e;
  font-weight: 300;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 2em;
}
.aboutUs a {
  color: #db3722;
  text-decoration: underline;
  display: block;
  margin-top: 2rem;
}

.aboutUs2 {
  display: grid;
  grid-template-columns: minmax(auto, 842px) minmax(auto, 781px);
  gap: 3.5rem;
  padding: 1em 0 2em 0;
  align-items: center;
  grid-row-gap: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.aboutUs2 .aboutUs2Content {
  background-color: #fafafa;
  padding: 3em;
  border-radius: 1em;
  /* Basic styles */
  /* Desktop layout */
}
.aboutUs2 .aboutUs2Content .subText {
  color: #db3722;
  font-size: 28px;
  font-weight: 600;
}
.aboutUs2 .aboutUs2Content h2 {
  font-size: 53px;
  color: #7f7f7f;
  font-weight: 500;
  line-height: 1.2em;
  margin-top: 0.7em;
  padding-right: 12rem;
}
.aboutUs2 .aboutUs2Content p {
  font-size: 17px;
  color: #524e4e;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1em;
}
.aboutUs2 .aboutUs2Content .feature-wrapper {
  padding: 20px;
  text-align: center;
}
.aboutUs2 .aboutUs2Content .feature-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 20px;
}
.aboutUs2 .aboutUs2Content .tab-btn {
  background: #eee;
  border: none;
  border-radius: 50%;
  padding: 10px;
  opacity: 0.5;
}
.aboutUs2 .aboutUs2Content .tab-btn.active {
  background: #d33;
  opacity: 1;
}
.aboutUs2 .aboutUs2Content .features {
  display: flex;
  flex-direction: column;
  gap: 5.4em;
  margin-top: 2em;
}
.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;
}
.aboutUs2 .aboutUs2Content .features #feature1 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #db3722;
  margin: 0.8em 0 0.5em;
}
.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;
}
.aboutUs2 .aboutUs2Content .features #feature2 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #edaa29;
  margin: 0.8em 0 0.5em;
}
.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;
}
.aboutUs2 .aboutUs2Content .features #feature3 h3 {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #309baf;
  margin: 0.8em 0 0.5em;
}
.aboutUs2 .aboutUs2Content .feature-box {
  display: none;
  max-width: 300px;
}
.aboutUs2 .aboutUs2Content .feature-box p {
  font-size: 13px;
}
.aboutUs2 .aboutUs2Content .feature-box.active {
  display: block;
}
@media (min-width: 767px) {
  .aboutUs2 .aboutUs2Content .feature-tabs {
    display: none;
  }
  .aboutUs2 .aboutUs2Content .features {
    flex-direction: row;
    justify-content: space-around;
  }
  .aboutUs2 .aboutUs2Content .feature-box {
    display: block !important;
  }
}
.aboutUs2 .mission span {
  color: #a5a5a5;
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  font-weight: 600;
}
.aboutUs2 .mission .imgContent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4rem;
  margin-top: 4.5rem;
}
.aboutUs2 .mission .imgContent h3 {
  font-size: 1.7rem;
  color: #309baf;
  margin: 0.8em 0 0.5em;
  font-weight: 500;
}
.aboutUs2 .mission .imgContent p {
  font-size: 16px;
  color: #524e4e;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 1em;
}
.aboutUs2 .mission .features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1.5em 0 0 0;
  margin: 0;
  max-width: 900px;
  column-gap: 2rem;
}
.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 */
}
.aboutUs2 .mission .features-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 5px;
  border: 2px solid #fff;
}
.aboutUs2 .mission .features-list li.red::before {
  border-color: #db3722;
}
.aboutUs2 .mission .features-list li.blue::before {
  border-color: #309baf;
}
.aboutUs2 .mission .features-list li.orange::before {
  border-color: #edaa29;
}
.aboutUs2 .mission .features-list li.gray::before {
  border-color: #a5a5a5;
}

.ourServices {
  text-align: center;
  padding-top: 5em;
}
.ourServices .subText {
  color: #db3722;
  font-size: 28px !important;
  font-weight: 600;
}
.ourServices h2 {
  font-size: 53px;
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
  text-align: center;
}
.ourServices .ourServicesContent {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  margin-bottom: 4rem;
}
.ourServices .ourServicesContent h3 {
  font-size: 24px;
  color: #7f7f7f;
  margin: 1.2rem 0 0.5rem;
  font-weight: 600;
}
.ourServices .ourServicesContent p {
  font-size: clamp(1rem, 0.9692rem + 0.1538vw, 1.2rem);
  color: #524e4e;
  font-weight: 300;
  line-height: 2.5rem;
  white-space: pre-line;
  margin-top: -2em;
}
.ourServices .serviceList,
.ourServices .serviceListMob {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem !important;
  gap: 1em;
}
.ourServices .serviceList .item,
.ourServices .serviceListMob .item {
  border: 1px solid #cacaca;
  border-radius: 2em;
  padding: 4rem 1.5rem;
  width: 20%;
  height: 350px;
}
.ourServices .serviceList .item span,
.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;
}
.ourServices .serviceList .item h3,
.ourServices .serviceListMob .item h3 {
  font-size: 18px;
  color: #db3722;
  margin: 0.8em 0 0.5em;
  line-height: 1.2;
}
.ourServices .serviceList .item p,
.ourServices .serviceListMob .item p {
  font-size: 16px;
  color: #524e4e;
}
.ourServices .serviceList .item:nth-child(2) span,
.ourServices .serviceListMob .item:nth-child(2) span {
  background-color: #db6f21;
}
.ourServices .serviceList .item:nth-child(2) h3,
.ourServices .serviceListMob .item:nth-child(2) h3 {
  color: #db6f21;
}
.ourServices .serviceList .item:nth-child(3) span,
.ourServices .serviceListMob .item:nth-child(3) span {
  background-color: #309baf;
}
.ourServices .serviceList .item:nth-child(3) h3,
.ourServices .serviceListMob .item:nth-child(3) h3 {
  color: #309baf;
}
.ourServices .serviceList .item:nth-child(4) span,
.ourServices .serviceListMob .item:nth-child(4) span {
  background-color: #edaa29;
}
.ourServices .serviceList .item:nth-child(4) h3,
.ourServices .serviceListMob .item:nth-child(4) h3 {
  color: #edaa29;
}
.ourServices .serviceListMob .item {
  border: 1px solid #cacaca;
  border-radius: 2em;
  padding: 3rem 1.1rem;
  height: 100%;
  margin: 0 2rem;
}

.bg-grey {
  background-color: #fafafa;
  margin-top: 10em;
  margin-bottom: 2em;
  padding: 5em 0;
  border-radius: 0.5rem;
}

.pricing .imgContent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  padding: 0em 0 3em 0;
  border-bottom: 1px solid #cacaca;
}
.pricing .imgContent span {
  color: #db3722;
  font-weight: 600;
  font-size: 28px;
}
.pricing .imgContent h2 {
  font-size: 53px;
  color: #7f7f7f;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
}
.pricing .imgContent p {
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
  color: #524e4e;
  font-weight: 400;
  line-height: 1.5em;
  margin-top: 1em;
}
.pricing .pricingTable {
  text-align: center;
}
.pricing .pricingTable p {
  font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
  font-weight: 300;
  line-height: 1.5em;
}
.pricing .pricingTable .pricing-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6rem 0;
}
.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;
}
.pricing .pricingTable .pricing-container .plan .firstSec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: start;
  text-align: left;
  padding: 0 1em;
}
.pricing .pricingTable .pricing-container .plan .firstSec h2 {
  margin: 0;
  font-size: clamp(1.2rem, 1.1538rem + 0.2308vw, 1.5rem);
}
.pricing .pricingTable .pricing-container .plan .firstSec img {
  width: 50px;
}
.pricing .pricingTable .pricing-container .plan .firstSec .description {
  font-size: 17px;
  color: #524e4e;
  margin: 0.5rem 0 1rem;
  font-weight: 400;
}
.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;
}
.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;
}
.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;
}
.pricing .pricingTable .pricing-container .plan .price p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 98%;
  gap: 0.5em;
}
.pricing .pricingTable .pricing-container .plan .price p .currency {
  font-size: 1.5rem;
  vertical-align: super;
  color: #fff;
  font-weight: 500;
}
.pricing .pricingTable .pricing-container .plan .price p .amount {
  color: #fff !important;
  font-size: 3rem;
  font-weight: bold;
}
.pricing .pricingTable .pricing-container .plan .price p .unit {
  font-size: 1.5rem;
  margin-left: 0.25rem;
  color: #fff;
  font-weight: 500;
  vertical-align: sub;
}
.pricing .pricingTable .pricing-container .plan .features {
  list-style: none;
  padding: 0;
  text-align: center;
  margin: 1.5em 0;
}
.pricing .pricingTable .pricing-container .plan .features li {
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}
.pricing .pricingTable .pricing-container .plan .features li:before {
  content: "✓";
  color: #309baf;
  margin-right: 0.5rem;
  font-weight: bold;
}
.pricing .pricingTable .pricing-container .plan .selectPlan {
  border-top: 1px solid #cacaca;
}
.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;
}
.pricing .pricingTable .silver h2 {
  color: #db3722;
}
.pricing .pricingTable .silver .price {
  color: #fff;
  background-color: #db3722;
  border-color: #9f1c0b !important;
}
.pricing .pricingTable .silver .price p {
  border-top: 2px solid #ffcec8;
}
.pricing .pricingTable .silver .selectPlan button {
  border-color: #db3722 !important;
  color: #db3722;
  background-color: #fdf5f4 !important;
}
.pricing .pricingTable .diamond {
  background-color: #f6fcff !important;
  transform: scale(1.05);
  z-index: 2 !important;
}
.pricing .pricingTable .diamond .firstSec h2 {
  color: #309baf;
}
.pricing .pricingTable .diamond .price {
  color: #fff;
  background-color: #309baf;
  border-color: #1d7e90 !important;
}
.pricing .pricingTable .diamond .price p {
  border-top: 2px solid #c3f6ff;
}
.pricing .pricingTable .diamond .selectPlan button {
  border-color: #309baf !important;
  color: #309baf;
  background-color: #ecf7fb !important;
}
.pricing .pricingTable .diamond .mostPopular {
  margin-bottom: 3em;
}
.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;
}
.pricing .pricingTable .gold .firstSec h2 {
  color: #edaa29;
}
.pricing .pricingTable .gold .price {
  background-color: #edaa29 !important;
  border-color: #bf9139 !important;
}
.pricing .pricingTable .gold .price p {
  border-top: 2px solid #f9eacb;
}
.pricing .pricingTable .gold .selectPlan button {
  border-color: #edaa29 !important;
  color: #edaa29;
  background-color: #fefbf4 !important;
}
.pricing .pricingTable .customPlanNote p {
  font-size: clamp(0.875rem, 0.8393rem + 0.1786vw, 1rem);
  padding: 0.5em 1.2em;
  border: 1px solid #edaa29;
  border-radius: 0.7rem;
  background-color: #f9f6ef;
  width: 780px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.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;
}

.work {
  margin: 6rem 0 0;
}
.work p {
  color: #db3722;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.work .workContent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 5em 0 0 0;
}
.work .workContent h2 {
  font-size: 50px;
  color: #edaa29;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.work .workContent h3 {
  font-size: 50px;
  color: #a5a5a5;
  font-weight: 400;
  margin-top: 3rem;
  line-height: 1.1;
}
.work .workContent h3 span.mob {
  display: none;
}
.work .workContent h3 span.desktop {
  display: block;
}
.work .workContent .portfolio {
  position: relative;
}
.work .workContent .portfolio ul {
  text-align: center;
}
.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;
}
.work .workContent .portfolio ul li img {
  transform: scale(0) translateY(100px);
  opacity: 0;
  position: relative;
  transition: all 0.3s ease;
}
.work .workContent .portfolio ul li:nth-child(2),
.work .workContent .portfolio ul li:nth-child(3) {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 6rem;
}
.work .workContent .portfolio ul li:nth-child(3) {
  padding: 0 12rem;
}
.work .workContent .portfolio ul li:last-child {
  padding: 0 21rem;
}
.work .workContent .portfolio p {
  font-size: clamp(1rem, 1.1538rem + 0.2308vw, 1.2rem) !important;
  color: #000;
  font-weight: 400;
  margin-top: 1rem;
}
.work .workContent .portfolio .lamp {
  margin: 0 auto;
  display: block;
  margin-top: 1rem;
}
.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;
}

.btm {
  padding: 0em 0 3em 0;
  border-bottom: 1px solid #cacaca;
}

.contact {
  text-align: center;
  padding-top: 5em;
}
.contact span {
  color: #db3722;
  font-size: 28px;
  font-weight: 600;
}
.contact h2 {
  font-size: 53px;
  color: #309baf;
  font-weight: 600;
  line-height: 1.2em;
  margin-top: 0.7em;
  text-align: center;
  margin-bottom: 2em;
}
.contact .form {
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: minmax(200px, 500px) 1fr;
}
.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;
}
.contact .form article h3 {
  font-size: 2rem;
  color: #fff;
  font-weight: 400;
  line-height: 1.5em;
  margin-bottom: 2em;
}
.contact .form article a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  font-size: 1.33rem;
}
.contact .form article img {
  width: auto;
}
.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;
}
.contact .form .inner p {
  text-align: left;
  color: #b8b8b8;
}
.contact .form .inner p:first-child {
  color: #494949;
}
.contact .form .inner .form-container {
  /* Hide mobile dropdown by default */
}
.contact .form .inner .form-container .form-section {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(auto, 15%) minmax(auto, 85%);
  align-items: center;
}
.contact .form .inner .form-container .form-section .form-section-label {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}
.contact .form .inner .form-container .form-section .option-group {
  display: flex;
  gap: 8px;
}
.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: #777;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
}
.contact .form .inner .form-container .form-section .option-group .option-btn p {
  justify-content: center;
  font-weight: 300;
  color: #858585;
  padding-top: 0.3rem;
}
.contact .form .inner .form-container .form-section .option-group .option-btn.selected, .contact .form .inner .form-container .form-section .option-group .option-btn.active {
  border-color: #2aacb9;
  color: #2aacb9;
}
.contact .form .inner .form-container .form-section .option-group .option-btn.selected p, .contact .form .inner .form-container .form-section .option-group .option-btn.active p {
  color: #2aacb9;
}
.contact .form .inner .form-container .form-section #selected-plan .option-btn {
  font-weight: 550;
  padding: 10px 15px !important;
}
.contact .form .inner .form-container .basic-info {
  margin-top: 30px;
  margin-bottom: 20px;
}
.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;
}
.contact .form .inner .form-container .basic-info .basic-info-header svg {
  margin-right: 8px;
}
.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;
}
.contact .form .inner .form-container .input-group input,
.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;
}
.contact .form .inner .form-container .input-group input:focus,
.contact .form .inner .form-container .input-group textarea:focus {
  border-bottom-color: #309baf;
}
.contact .form .inner .form-container .input-group label {
  display: block;
  color: #666;
  font-size: 14px;
}
.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;
}
.contact .form .inner .form-container .send-btn:hover {
  background-color: #db3722;
}
.contact .form .inner .form-container .option-dropdown {
  display: none;
}
.contact .form .inner .form-container .option-dropdown select {
  border-color: #c9c9c9;
}
.contact .form .inner .input-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.contact .form .inner .input-row .input-group:first-child,
.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;
}
.contact button.disable {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
}

#formMessage {
  user-select: none;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

#formMessage.fade-out {
  opacity: 0;
}

.icon {
  display: flex;
  gap: 0.5rem;
}

.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;
}
.success p {
  color: #17a52e !important;
  font-size: 18px;
  font-weight: 600;
}

.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;
}
.error p {
  color: red !important;
  font-size: 20px;
}

.btn-Message {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slider,
.mobilePlanSelector,
.mobilePlans,
.serviceListMob,
ul.tabs,
.tabs-content,
p.mob,
.custom-select-wrapper {
  display: none !important;
}

.serviceListMob ul.slick-dots {
  display: flex;
  gap: 0.3rem;
  position: absolute;
  top: 110%;
  display: flex;
  justify-content: center;
  width: 100%;
}

.serviceListMob ul.slick-dots button {
  border-radius: 100%;
  width: 13px;
  height: 13px;
  font-size: 0;
  background-color: #d6d6d6;
  border: 0;
}

.serviceListMob ul.slick-dots .slick-active button {
  background-color: #309baf !important;
}

header .parent {
  max-width: 1440px;
  width: 100%;
}

main .heroBanner .heroBannerContent .scrollMouse::before {
  position: absolute;
  content: "";
  background-color: #ccc9ca;
  width: 1px;
  height: 110px;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 65px;
}

main .heroBanner {
  background-color: #db3722;
}

main .heroBanner .heroBannerContent {
  padding: 15rem 8rem 5rem;
}

main .heroBanner .heroBannerContent h1 {
  width: 75%;
}

.btnAllPort {
  margin-top: 3rem;
}

.btnAllPort a {
  border: 1.5px solid #309baf !important;
  color: #309baf;
  border-radius: 30px;
  padding: 1rem 2rem;
  font-weight: 500;
}

main .pricing .pricingTable .silver .selectPlan button:hover {
  background-color: rgba(218, 114, 101, 0.4117647059) !important;
}

main .pricing .pricingTable .diamond .selectPlan button:hover,
main .pricing .pricingTable .customPlanNote p a:hover,
.btnAllPort a:hover {
  background-color: rgba(48, 155, 175, 0.3803921569) !important;
}

main .pricing .pricingTable .gold .selectPlan button:hover {
  background-color: rgba(237, 170, 41, 0.4784313725) !important;
}

header .parent .mobileRight a {
  color: #db3722 !important;
  border: 0;
}

header .parent .mobileRight a:hover {
  background-color: #ffd05e;
}

main .heroBanner .heroBannerContent a {
  font-weight: 500;
}

main .heroBanner .heroBannerContent a:hover {
  color: #309baf;
}

main .contact .form .inner .form-container .form-section .option-group .option-btn:hover {
  border-color: #db3722;
  color: #db3722;
}

main .contact .form article a:hover {
  color: #db3722;
}

main .aboutUs2 .mission .features-list li {
  height: 50px;
  line-height: 1.5;
}

a#backToTop:hover {
  transform: translateY(-10px);
}

a#backToTop {
  transition: ease 1s all;
}

main .contact .form .inner p {
  display: flex;
  align-items: center;
}

.plan.silver .selectPlan {
  margin-top: 66%;
}

main .work .workContent h3 {
  margin-top: 0;
}

.workContent > div > img {
  margin: 2rem 0;
}

footer {
  padding: 14rem 0 4em 0;
}

.forMob a::before,
.btnM {
  display: none !important;
}

.btnD {
  display: block !important;
}

.form-group {
  margin-bottom: 32px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.section-title {
  color: #a0a0a0;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.custom-select {
  position: relative;
  width: 100%;
}

.select-header {
  border: 1px solid #cacaca;
  border-radius: 10px;
  padding: 9px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  user-select: none;
}

.select-header:hover {
  border-color: #d0d0d0;
}

.select-header.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.selected-value {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.plan-namem .simple-value {
  font-size: 15px;
  font-weight: 600;
  color: #524e4e;
}

.plan-price {
  font-size: 13px;
  color: #888;
}

.dropdown-arrow {
  width: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-arrow svg {
  width: 100%;
  height: 100%;
  fill: #888;
}

.select-header.active .dropdown-arrow {
  transform: rotate(180deg);
}

.options-container {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  right: 0;
  background: white;
  border-radius: 12px;
  /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15); */
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 5px;
  border: 1px solid #cacaca;
  border-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.options-container.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.option-item {
  padding: 5px 15px;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option-item:last-child {
  border-bottom: none;
}

.option-item:hover {
  background: #f6f6f6;
}

.option-item.selected {
  background: #f6f6f6;
  border-radius: 0.8rem;
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.option-name {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

.option-price {
  font-size: 13px;
  color: #888;
}

.option-note {
  font-size: 14px;
  color: #888;
  font-weight: 400;
}

.checkmark {
  width: 12px;
  opacity: 0;
  right: 10px;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  position: relative;
}

.checkmark svg {
  width: 100%;
  height: 100%;
  fill: #888;
}

.option-item.selected .checkmark {
  opacity: 1;
}

/* Hidden native select for form submission */
select {
  display: none;
}

/* Scrollbar styling */
.options-container::-webkit-scrollbar {
  width: 6px;
}

.options-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.options-container::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

@media screen and (max-width: 1024px) and (min-width: 768px) {
  .heroBanner .objects .object2 {
    left: 0 !important;
  }
  .aboutUs {
    gap: 0rem;
    grid-template-columns: 200px minmax(150px, 1fr) 0px;
  }
  .aboutUs2 {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
  .ourServices .ourServicesContent p {
    white-space: unset;
    margin-top: 0;
  }
  .ourServices .serviceList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem !important;
  }
  .ourServices .serviceList .item {
    width: 100%;
  }
  .bg-grey {
    margin-top: 5rem;
  }
  .bg-grey .pricing .imgContent {
    flex-direction: column;
  }
  .bg-grey .pricing .pricingTable .desktopPlans {
    display: none;
  }
  .bg-grey .pricing .pricingTable .customPlanNote p {
    flex-direction: column;
    width: 100%;
  }
  .custom-select-wrapper,
  .mobilePlans {
    display: block !important;
  }
  .custom-select-wrapper {
    position: relative;
    width: 45%;
    margin: 2rem auto;
    display: block !important;
  }
  .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;
  }
  .custom-select-wrapper .custom-select div {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 1rem;
  }
  .custom-select-wrapper .custom-select .select-icon {
    width: 30%;
    margin-right: 8px;
  }
  .custom-select-wrapper .custom-select .selected-option {
    font-size: 1.4rem;
  }
  .custom-select-wrapper .custom-select .arrow {
    width: 25px;
  }
  .custom-select-wrapper .custom-select.open {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .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;
  }
  .custom-select-wrapper .options li {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .custom-select-wrapper .options li div {
    display: flex;
    width: 50%;
    align-items: center;
  }
  .custom-select-wrapper .options li img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
  }
  .custom-select-wrapper .options li:hover {
    background-color: #f3f3f3;
  }
  .custom-select-wrapper .options li.selected {
    background-color: #f6f6f6;
    font-weight: 600;
    position: relative;
  }
  .custom-select-wrapper .options li.selected::after {
    content: "";
    background-image: url("../assets/img/checkmark.png");
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .mobilePlanSelector,
  .mobilePlans {
    display: inline-block !important;
  }
  .mobilePlanSelector .plan,
  .mobilePlans .plan {
    display: none !important;
    width: 320px !important;
  }
  .mobilePlanSelector .plan .price,
  .mobilePlans .plan .price {
    width: 350px !important;
  }
  .mobilePlanSelector .plan.active,
  .mobilePlans .plan.active {
    display: block !important;
  }
  .work .workContent {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .btn-Message {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .contact {
    padding-top: 3em;
  }
  img {
    width: 100%;
  }
  .btnD {
    display: none !important;
  }
  .btnM {
    display: block !important;
  }
  .pricing .pricingTable .diamond {
    transform: unset !important;
    box-shadow: unset !important;
  }
  .heroBanner .heroBannerContent {
    padding: 8rem 2.5rem 5rem;
  }
  .heroBanner .heroBannerContent h1 {
    font-weight: 600;
    font-size: 50px;
  }
  .heroBanner .heroBannerContent p {
    width: 90%;
    position: relative;
    z-index: 99;
    font-size: 18px;
  }
  .heroBanner .heroBannerContent a {
    padding: 1rem 2rem;
  }
  .heroBanner .heroBannerContent .scrollMouse::before {
    height: 100px;
    top: 50px;
  }
  .heroBanner .objects img:nth-child(2) {
    bottom: 24px;
    left: -250px;
  }
  .heroBanner .objects img:nth-child(3) {
    bottom: 27px;
    right: 11px !important;
    height: 473px;
    object-fit: contain;
    width: 137px;
  }
  .heroBanner .objects .object4 {
    display: none;
  }
  .aboutUs {
    padding-top: 5rem !important;
  }
  .aboutUs p {
    width: 98%;
    margin: 0 auto;
    padding: 1rem 0;
  }
  .aboutUs img {
    width: 50%;
    margin: 0 auto;
  }
  .aboutUs h2 {
    font-size: 1.8rem;
  }
  .aboutUs p span {
    display: none;
  }
  .aboutUs2 .aboutUs2Content h2 {
    padding-right: 0 !important;
    font-size: 1.8rem;
  }
  .aboutUs2 .subText {
    font-size: 1.4rem !important;
  }
  .aboutUs2 .mission span {
    font-size: 1.2rem !important;
  }
  .aboutUs2 .mission .imgContent {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .aboutUs2 .mission .imgContent h3 {
    font-size: 1.4rem !important;
    line-height: 1.5;
    width: 87%;
    margin: 0 auto;
    font-weight: 600;
  }
  .aboutUs2 .mission .imgContent p {
    color: #250202;
    width: 84%;
    margin: 0 auto 1rem;
  }
  .aboutUs,
  .aboutUs2 {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 1rem;
    text-align: center;
  }
  .aboutUs .mission .features-list,
  .aboutUs2 .mission .features-list {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 1rem;
  }
  .aboutUs .mission .features-list li,
  .aboutUs2 .mission .features-list li {
    padding-bottom: 1rem;
  }
  .aboutUs .mission .features-list li:nth-child(8),
  .aboutUs2 .mission .features-list li:nth-child(8) {
    display: none;
  }
  .aboutUs .mission .features-list li::before,
  .aboutUs2 .mission .features-list li::before {
    top: 3px !important;
    border-width: 3px;
  }
  .work .workContent {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 1rem;
  }
  .work .workContent h3 {
    margin-top: 1rem;
  }
  .work .workContent div:first-child img {
    width: 85%;
  }
  .work .workContent .portfolio ul {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .work .workContent .portfolio ul li:first-child img:first-child,
  .work .workContent .portfolio ul li:first-child img:nth-child(2) {
    width: 55%;
  }
  .work .workContent .portfolio ul li:nth-child(2) img:first-child,
  .work .workContent .portfolio ul li:nth-child(2) img:nth-child(2),
  .work .workContent .portfolio ul li:nth-child(2) img:nth-child(3) {
    width: 30%;
  }
  .work .workContent .portfolio ul li:nth-child(3) img:first-child,
  .work .workContent .portfolio ul li:nth-child(3) img:nth-child(2),
  .work .workContent .portfolio ul li:nth-child(3) img:nth-child(3),
  .work .workContent .portfolio ul li:nth-child(3) img:nth-child(4) {
    width: 15%;
  }
  .work .workContent .portfolio ul li:nth-child(4) img:first-child,
  .work .workContent .portfolio ul li:nth-child(4) img:nth-child(2) {
    width: 10%;
    padding: 0 !important;
  }
  .work .workContent .portfolio ul li {
    gap: 0.3rem;
    padding: 0 1rem !important;
  }
  .work .workContent .portfolio .lamp {
    width: auto;
  }
  .ourServices .subText {
    font-size: 1.4rem !important;
  }
  .ourServices h2 {
    font-size: 1.8rem;
  }
  .ourServices h3 {
    margin: 0rem 0 1rem !important;
    font-size: 1rem !important;
  }
  .ourServices .ourServicesContent {
    flex-direction: column;
    text-align: center;
  }
  .ourServices .ourServicesContent p {
    white-space: unset;
    margin-top: 0;
    line-height: 1.5rem;
    color: #524e4e;
    padding: 0 0.5rem;
    font-size: 14px !important;
  }
  .ourServices .serviceListMob .item h3 {
    margin-top: 1rem !important;
    font-size: 18px !important;
  }
  img.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .next {
    right: 0px;
  }
  .prev {
    left: 0px;
  }
  .bg-grey {
    margin: 6rem 1rem 0;
    border-radius: 1rem;
    padding: 0 !important;
  }
  .serviceList {
    display: none !important;
  }
  .serviceList div span img {
    width: auto;
  }
  .serviceListMob {
    display: block !important;
  }
  .serviceListMob img {
    width: auto;
  }
  main .serviceList > div:last-child {
    margin-right: 1rem; /* ✅ spacing at end */
  }
  .serviceList::-webkit-scrollbar {
    display: none; /* hide scrollbar for cleaner mobile look */
  }
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
  .slider-controls button {
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .dots {
    display: flex;
    gap: 6px;
  }
  .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    display: block;
    cursor: pointer;
  }
  .dots span.active {
    background: #333;
  }
  .pricing .imgContent {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 0;
    margin-bottom: 2rem;
  }
  .pricing .imgContent span {
    font-size: 1.4rem;
  }
  .pricing .imgContent h2 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
  .pricing .imgContent p {
    display: none;
  }
  .pricing .imgContent img {
    margin: 3rem 0;
    width: 70%;
  }
  .pricing .imgContent p.mob {
    display: block !important;
    margin-top: 0;
  }
  .pricing .pricingTable {
    padding-bottom: 3rem;
  }
  .pricing .pricingTable p {
    line-height: 2;
  }
  .pricing .pricingTable .customPlanNote p {
    width: 200px;
    flex-direction: column;
    width: 100%;
  }
  .pricing .pricingTable .customPlanNote p strong {
    border-bottom: 1px solid #edaa29;
    width: 100%;
    padding-bottom: 0rem;
  }
  .pricing .pricingTable .customPlanNote p a {
    padding: 0rem 1.7rem;
  }
  .pricing .pricingTable .pricing-container {
    margin: 0rem 0 3rem;
  }
  .pricing .pricingTable .pricing-container .plan .features li {
    margin: 0 0 1rem 0;
    font-size: 14px !important;
  }
  .pricing .pricingTable .pricing-container button {
    padding: 0.5rem 1rem !important;
  }
  .pricing .firstSec img {
    width: auto;
  }
  .work {
    margin: 3rem 0 0 !important;
  }
  .work p {
    font-size: 1.4rem;
  }
  .work .workContent h2,
  .work .workContent h3 {
    font-size: 1.8rem !important;
    line-height: 1.5 !important;
  }
  .work .workContent h2 .mob,
  .work .workContent h3 .mob {
    display: block !important;
  }
  .work .workContent h2 .desktop,
  .work .workContent h3 .desktop {
    display: none !important;
  }
  .contact span {
    font-size: 1.4rem !important;
  }
  .contact h2 {
    font-size: 1.8rem !important;
    line-height: 1.5;
  }
  .contact .form {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  .contact .form article {
    order: 2;
    border-radius: 1rem;
    background-position: top;
    background-size: unset;
    padding: 3rem 1rem 3rem;
    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);
  }
  .contact .form article h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .contact .form .inner {
    border-radius: 10px;
    border-left: 2px solid #cacaca;
    padding: 2rem;
  }
  .contact .form .inner p {
    line-height: 1.6;
  }
  .contact .form .inner .input-row {
    flex-direction: column;
  }
  .contact .form .inner .input-row .input-group {
    grid-template-columns: 1fr !important;
  }
  .contact .form .inner .form-container .input-group {
    grid-template-columns: 1fr !important;
  }
  .contact .form .inner .form-container .form-section {
    grid-template-columns: 1fr;
  }
  .contact .form .inner .form-container .form-section .option-group {
    flex-direction: column;
  }
  .contact .form .inner .form-container #select-services,
  .contact .form .inner .form-container #plan-budget,
  .contact .form .inner .form-container #selected-plan {
    display: none !important;
  }
  .contact .form .inner .form-container .option-dropdown {
    display: block;
  }
  .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 */
    background-image: url("../assets/img/downarrow.png") !important;
    appearance: none;
    background: transparent;
    background-repeat: no-repeat;
    background-position-x: 93%;
    background-position-y: 20px;
    background-size: 5%;
  }
  .contact .form .inner p {
    display: flex;
    align-items: center;
  }
  .contact .form .inner p img {
    width: auto;
  }
  .contact .send-btn {
    width: 100% !important;
    padding: 1rem !important;
  }
  .slider {
    position: relative;
    width: 600px;
    height: 300px;
    overflow: hidden;
    margin: auto;
  }
  .slider .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }
  .slider .slides .slide {
    min-width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  .pricing-container .firstSec {
    padding: 0 !important;
  }
  .pricing-container .description {
    font-size: 14px !important;
  }
  .mobilePlanSelector {
    display: block !important;
    width: 100%;
    margin: 2rem 0 1rem;
    text-align: center;
  }
  .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;
  }
  .custom-select-wrapper {
    position: relative;
    width: 96%;
    margin: 2rem auto;
    display: block !important;
  }
  .custom-select-wrapper .custom-select {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 3.564px 1.816px 31.5px 3.5px rgba(90, 90, 90, 0.15);
  }
  .custom-select-wrapper .custom-select div {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 1rem;
  }
  .custom-select-wrapper .custom-select .select-icon {
    width: 35px !important;
    height: 35px;
    object-fit: contain;
  }
  .custom-select-wrapper .custom-select .selected-option {
    font-size: 1.4rem;
  }
  .custom-select-wrapper .custom-select .arrow {
    width: 25px;
  }
  .custom-select-wrapper .custom-select.open {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .custom-select-wrapper .custom-select.open.arrow {
    transform: rotate(180deg);
  }
  .custom-select-wrapper .options {
    display: none;
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background: white;
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    padding: 0 1rem 1rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
  }
  .custom-select-wrapper .options li {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .custom-select-wrapper .options li div {
    display: flex;
    width: 50%;
    align-items: center;
    gap: 1rem;
  }
  .custom-select-wrapper .options li div span {
    font-size: 22px;
  }
  .custom-select-wrapper .options li img {
    width: 35px !important;
    height: 35px;
    object-fit: contain;
  }
  .custom-select-wrapper .options li:hover {
    background-color: #f3f3f3;
  }
  .custom-select-wrapper .options li.selected {
    background-color: #f6f6f6;
    font-weight: 600;
    position: relative;
    border-radius: 0.7rem;
  }
  .custom-select-wrapper .options li.selected::after {
    content: "";
    background-image: url(../assets/img/checkmark.png);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
  }
  .custom-select-wrapper .custom-select.open .arrow {
    transform: rotate(180deg) !important;
  }
  .mobilePlanSelector,
  .mobilePlans {
    display: inline-block !important;
  }
  .mobilePlanSelector .plan,
  .mobilePlans .plan {
    display: none !important;
    width: 320px !important;
  }
  .mobilePlanSelector .plan .price,
  .mobilePlans .plan .price {
    width: 350px !important;
  }
  .mobilePlanSelector .plan.active,
  .mobilePlans .plan.active {
    display: block !important;
  }
  .feature-wrapper,
  .desktopPlans {
    display: none !important;
  }
  ul.tabs {
    margin: 3rem auto 1rem;
    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);
    width: 85% !important;
  }
  ul.tabs li {
    background: #eaeaea;
    color: #222;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  ul.tabs li img {
    filter: invert(1);
    width: 80%;
  }
  ul.tabs li:nth-child(1).current {
    background: #db3722;
  }
  ul.tabs li:nth-child(1).current img {
    filter: unset;
  }
  ul.tabs li:nth-child(2).current {
    background: #edaa29;
  }
  ul.tabs li:nth-child(2).current img {
    filter: unset;
  }
  ul.tabs li:nth-child(3).current {
    background: #309baf;
  }
  ul.tabs li:nth-child(3).current img {
    filter: unset;
  }
  .tabs-content {
    display: block !important;
  }
  .tabs-content h3 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .tabs-content #tab-1 h3 {
    color: #db3722;
  }
  .tabs-content #tab-2 h3 {
    color: #edaa29;
  }
  .tabs-content #tab-3 h3 {
    color: #309baf;
  }
  .tabs-content .tab-content {
    display: none;
    padding: 15px;
  }
  .tabs-content .tab-content.current {
    display: inherit;
  }
}
@media (max-width: 767px) {
  .aboutUs2 .aboutUs2Content .tabs-content p {
    width: 84.6%;
    margin: 0 auto;
    padding: 1rem 0;
  }
  .container-fluid {
    padding: 0 1rem;
  }
  .aboutUs2 .aboutUs2Content {
    padding: 1.5rem;
  }
  .aboutUs .content {
    padding-bottom: 3rem;
  }
  .parent .mobileRight a {
    font-size: 18px !important;
  }
  .parent .logo img {
    width: 130px;
  }
  main .aboutUs2 .mission .features-list li {
    height: auto;
  }
  main .heroBanner {
    background-size: unset !important;
  }
  main .heroBanner .heroBannerContent h1 {
    width: 100% !important;
  }
  main .heroBanner .heroBannerContent {
    padding: 7rem 0 5rem 0px !important;
  }
  .plan.silver,
  .plan.gold {
    height: 100% !important;
  }
  .plan.silver .selectPlan {
    margin-top: 0;
  }
  .btnAllPort {
    margin: 2rem 0;
  }
  .parent {
    gap: 1rem !important;
  }
  header .parent a.logo {
    width: fit-content !important;
    text-align: center;
  }
  .mission {
    padding: 2rem 2rem 0;
  }
  main .aboutUs2 .mission .imgContent {
    margin-top: 3rem !important;
  }
  main .aboutUs2 .mission .imgContent h3 {
    width: 270px;
    margin-top: 1rem;
    text-align: center;
    margin: 2rem auto 1rem auto;
  }
  main .pricing .imgContent img {
    margin: 1rem 0;
  }
  main .ourServices {
    text-align: center;
    padding-top: 2em;
  }
  main .ourServices h2 br {
    display: none;
  }
  main .ourServices h2 {
    font-size: 1.8rem;
    width: 92%;
    font-weight: 500;
    line-height: 1.5em;
    margin: 0 auto;
    margin-top: 1rem;
  }
}
@media (max-width: 375px) {
  .heroBanner header .mobileRight a {
    padding: 0.3em !important;
    font-size: 0.9rem;
  }
  .heroBanner .heroBannerContent p {
    width: 78% !important;
  }
  .heroBanner .heroBannerContent a {
    padding: 0.5rem 1.5rem;
    font-weight: 300;
  }
  .mobilePlans .plan {
    width: 280px !important;
  }
  .mobilePlans .plan .price {
    width: 310px !important;
  }
  ul.tabs li img {
    filter: invert(1);
    width: 28px;
  }
  .mission {
    padding: 0;
  }
}
.portfolio .banner {
  display: grid;
  grid-template-columns: minmax(auto, 55%) minmax(auto, 45%);
}
.portfolio .banner .heroBannerContent {
  padding: 10rem 0 5rem !important;
  text-align: left !important;
}
.portfolio .banner .heroBannerContent h1 {
  font-size: 60px !important;
  text-transform: capitalize;
  font-weight: 600;
}
.portfolio .banner .heroBannerContent p {
  width: 100% !important;
}
.portfolio .banner .objects img {
  position: absolute;
}
.portfolio .banner .objects img:first-child {
  top: 35%;
  left: 60%;
}
.portfolio .banner .objects img:nth-child(2) {
  bottom: 50%;
  left: 73%;
}
.portfolio #work-sec {
  padding: 5rem 0;
  /* Tabs container */
  /* Tab buttons */
  /* Tab content */
}
.portfolio #work-sec h2 {
  font-size: 34px;
  text-transform: uppercase;
  color: #524e4e;
}
.portfolio #work-sec p {
  font-size: 20px;
  color: #db3722;
}
.portfolio #work-sec .items {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  row-gap: 6rem;
}
.portfolio #work-sec .items .item {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1rem;
}
.portfolio #work-sec .items .item .content {
  display: flex;
  gap: 2rem;
  padding-top: 1rem;
  align-items: center;
}
.portfolio #work-sec .items .item .content h3 {
  --animation-delay: 0.5s;
  --animation-duration: 1s;
  --animation-iterations: 1;
  position: relative;
  animation: clip-text 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 both;
  white-space: nowrap;
  cursor: default;
}
.portfolio #work-sec .items .item .content h3::after {
  content: "";
  position: absolute;
  z-index: 999;
  inset: 0;
  background-color: #db3722;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation: text-revealer 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 both;
}
.portfolio #work-sec .items .item .content .plogo {
  border-radius: 1rem;
}
.portfolio #work-sec .items .item .content > div {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.portfolio #work-sec .items .item .content > div p {
  font-size: 15px;
  color: #929191;
}
.portfolio #work-sec .items .item .tools {
  display: flex;
  gap: 1rem;
}
.portfolio #work-sec .tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 2px solid #ddd;
  margin-top: 5rem;
  padding: 0 7rem;
}
.portfolio #work-sec .tab {
  flex: 1;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  border-bottom: none;
  transition: background 0.3s;
}
.portfolio #work-sec .tab.active {
  font-weight: bold;
  color: #db3722;
  position: relative;
  width: fit-content;
}
.portfolio #work-sec .tab.active::after {
  content: "";
  display: block;
  border-bottom: 2px solid #db3722;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 26%;
  margin: 0 auto;
  right: 0;
}
.portfolio #work-sec .tab-content {
  display: none;
  padding: 20px;
}
.portfolio #work-sec .tab-content.active {
  display: block;
}

@media (max-width: 767px) {
  .banner {
    grid-template-columns: 1fr !important;
  }
  .banner .objects img:first-child {
    top: 90px !important;
    width: 40%;
  }
  .banner .objects img:nth-child(2) {
    bottom: 50px !important;
    left: 0 !important;
    width: 50%;
    right: 0;
    margin: 0 auto;
  }
  #work-sec {
    padding: 1rem !important;
  }
  #work-sec .items {
    margin: 2rem 0 !important;
    grid-template-columns: 1fr !important;
    row-gap: 2rem !important;
  }
  #work-sec .content {
    gap: 1rem !important;
  }
  #work-sec .content .tools img {
    width: unset !important;
  }
  #work-sec .content .plogo {
    width: 30%;
  }
}
#single-portfolio-hero {
  padding: 14rem 0 !important;
}

#single-portfolio-details {
  position: relative;
  top: -200px;
}

.single-portfolio-details {
  padding: 5rem 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 5rem;
  background-color: #fff;
}
.single-portfolio-details .topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #cacaca;
  padding-bottom: 1rem;
}
.single-portfolio-details .topbar .img-anc {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #524e4e;
  font-weight: 500;
}
.single-portfolio-details .topbar .img-anc img {
  width: 25px;
  height: 25px;
}
.single-portfolio-details .topbar .img-anc .back {
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(2085%) hue-rotate(351deg) brightness(95%) contrast(96%);
}
.single-portfolio-details .topbar .img-anc .heart {
  filter: brightness(0) saturate(100%) invert(46%) sepia(92%) saturate(5835%) hue-rotate(335deg) brightness(88%) contrast(98%);
}
.single-portfolio-details .content {
  padding: 1rem 0;
}
.single-portfolio-details .content > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6rem;
  align-items: start;
}
.single-portfolio-details .content > div h1 {
  color: #524e4e;
  font-size: 36px;
  padding: 0 0.5rem;
}
.single-portfolio-details .content > div p {
  padding: 0.5rem !important;
}
.single-portfolio-details .content .plogo {
  border-radius: 20px;
}
.single-portfolio-details .content .tools {
  display: flex;
  gap: 1rem;
  padding: 1rem 0.5rem 2rem;
}
.single-portfolio-details .content h2 {
  font-size: 24px !important;
  color: #524e4e;
  margin: 2rem 0 0 0;
  padding: 0 2rem;
}
.single-portfolio-details .content h3 {
  font-size: 22px !important;
  color: #524e4e;
  border-bottom: 1px solid #524e4e;
  width: fit-content;
  margin: 0 2rem 2rem;
}
.single-portfolio-details .content p {
  color: #524e4e !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  padding: 0.5rem 2rem !important;
}

.btmbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
}
.btmbar .img-anc {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: #524e4e;
  font-weight: 500;
  border: 1px solid #cacaca;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  transition: ease 1s all;
}
.btmbar .img-anc img {
  width: 25px;
  height: 25px;
}
.btmbar .img-anc .back {
  filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(2085%) hue-rotate(351deg) brightness(95%) contrast(96%);
}
.btmbar .img-anc .arrowRev {
  transform: rotate(180deg);
}
.btmbar .img-anc:hover {
  background-color: #db3722;
  transition: ease 1s all;
  color: #fff;
}
.btmbar .img-anc:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.items {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  row-gap: 6rem;
}
.items .item {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 1rem;
}
.items .item .content {
  display: flex;
  gap: 1.2rem;
  padding-top: 1rem;
  align-items: center;
}
.items .item .content h3 {
  --animation-delay: 0.5s;
  --animation-duration: 1s;
  --animation-iterations: 1;
  position: relative;
  animation: clip-text 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 both;
  white-space: nowrap;
  cursor: default;
  font-size: 13px !important;
}
.items .item .content h3::after {
  content: "";
  position: absolute;
  z-index: 999;
  inset: 0;
  background-color: #db3722;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation: text-revealer 1s cubic-bezier(0, 0, 0.2, 1) 0.5s 1 both;
}
.items .item .content .plogo {
  border-radius: 1rem;
  width: 70px;
}
.items .item .content > div {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.items .item .content > div p {
  font-size: 10px;
  color: #929191;
}
.items .item .tools {
  display: flex;
  gap: 1rem;
}

@media (max-width: 767px) {
  .single-portfolio-details {
    padding: 1rem;
  }
  .single-portfolio-details h1 {
    font-size: 24px !important;
  }
  .single-portfolio-details .content h2 {
    font-size: 18px !important;
    margin: 1rem 0 0 0 !important;
    padding: 0 1rem !important;
  }
  .single-portfolio-details .content p {
    padding: 0.5rem 1rem !important;
  }
  .single-portfolio-details .content h3 {
    margin: 0 auto;
  }
  .plogo {
    display: none;
  }
  .btmbar {
    flex-direction: column;
    gap: 1rem;
  }
  .items {
    margin: 2rem 0 !important;
    grid-template-columns: 1fr !important;
    row-gap: 2rem !important;
  }
  .content {
    gap: 1rem !important;
  }
  .content .tools img {
    width: unset !important;
  }
  .content .plogo {
    width: 30%;
  }
}
.bg-orange {
  background-image: url("../assets/img/header-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mobileRight a {
  color: #000 !important;
}
.mobileRight a img {
  width: 18px;
  margin-right: 5px;
}

.inner-page main {
  padding: 10rem 0rem 0rem;
}
.inner-page main .inner_header {
  padding: 2.5rem 0;
  margin-bottom: 2rem;
  border-bottom: 1px solid #7f7f7f;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}
.inner-page main .inner_header li {
  position: relative;
  padding: 0;
}
.inner-page main .inner_header li a {
  color: #7f7f7f;
  font-weight: 500;
}
.inner-page main .inner_header li.check a {
  font-weight: bold;
}
.inner-page main .inner_header li.check::before {
  position: absolute;
  border-bottom: 4px solid #7f7f7f;
  content: "";
  width: 100%;
  top: 70px;
}
.inner-page main h1,
.inner-page main h2 {
  color: #309baf;
}
.inner-page main h2 {
  padding: 1rem 0;
}
.inner-page main p,
.inner-page main li {
  padding-bottom: 0.5rem;
  font-weight: 300;
  line-height: 2em;
}
.inner-page main ol,
.inner-page main ul {
  list-style: disc;
}
.inner-page footer {
  margin-top: 5rem;
  background-image: none !important;
  padding: 0 !important;
}
.inner-page footer .container {
  border-top: 1px solid #7f7f7f;
  max-width: 1440px !important;
  align-items: start;
  padding: 3rem 0;
}
.inner-page footer .container img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(0%) saturate(0%) hue-rotate(331deg) brightness(96%) contrast(94%);
  width: 150px;
}
.inner-page footer .container div {
  text-align: left;
}
.inner-page footer .container p {
  color: #7f7f7f;
  padding-top: 0.5rem;
}
.inner-page footer .container ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.inner-page footer .container ul li {
  border: 0.1em solid #7f7f7f;
  border-radius: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  margin: 0 0.5rem !important;
}
.inner-page footer .container ul li a {
  display: contents;
}
.inner-page footer .container ul li a img {
  width: 20px;
}
.inner-page footer .container ul li:hover {
  background-color: #db3722;
}
.inner-page footer .container ul li:hover a img {
  filter: brightness(1) invert(1);
}

@media (max-width: 767px) {
  .inner-page main {
    padding: 10rem 1rem 0rem 1rem;
  }
}
body.dark-mode {
  background: #121212;
  color: #eee;
}

/* normalize.css content or import */

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