/*  font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --primaryColor: #f69520;
  --secondaryColor: #0e417e;
}

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

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: calc(100% - 220px);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 50px);
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 20px);
  }
}
a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "Poppins", sans-serif;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: vertical;
  font-family: "Poppins", sans-serif;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}

.shimmer {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7254901961);
  top: 0;
  left: 0;
  z-index: 105;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  display: none;
}

.welcomePopup {
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  top: 0;
  left: 0;
  padding: 60px 0px;
  display: none;
  justify-content: center;
  align-items: flex-start;
  background: rgba(0, 0, 0, 0.768627451);
}
.welcomePopup .welcomePopupBox {
  width: 500px;
  background: white;
  position: relative;
  border-radius: 20px;
}
@media (max-width: 600px) {
  .welcomePopup .welcomePopupBox {
    width: 90%;
  }
}
.welcomePopup .welcomePopupBox .closeWelcomePopup {
  position: absolute;
  top: 0px;
  right: -40px;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 600px) {
  .welcomePopup .welcomePopupBox .closeWelcomePopup {
    right: 0px;
    top: -40px;
  }
}
.welcomePopup .welcomePopupBox .closeWelcomePopup:hover {
  transition: 0.3s;
  transform: rotate(90deg);
}
.welcomePopup .welcomePopupBox .closeWelcomePopup span {
  font-size: 30px;
}
.welcomePopup .welcomePopupBox .welcomePopupThumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.welcomePopup .welcomePopupBox .welcomePopupThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidemenu {
  position: fixed;
  z-index: 120;
  top: 20px;
  right: -600px;
  background: #100F0F;
  border: 1px solid #1F1C19;
  width: 400px;
  height: calc(100vh - 40px);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 480px) {
  .sidemenu {
    width: calc(100% - 40px);
  }
}
.sidemenu .sidemenuHead {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
  border-bottom: 1px solid #1F1C19;
}
.sidemenu .sidemenuHead .backSidemenu {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidemenu .sidemenuHead .backSidemenu span {
  font-size: 26px;
  color: white;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0;
}
.sidemenu .sidemenuHead .closeSidemenu {
  cursor: pointer;
  margin-left: auto;
}
.sidemenu .sidemenuHead .closeSidemenu span {
  font-size: 28px;
  color: white;
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0;
}
.sidemenu .sidemenuBody {
  width: 100%;
  height: calc(100vh - 40px - 80px);
  padding: 20px 0px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  background: url(../images/serviceMask.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.sidemenu .sidemenuBody h2 {
  font-size: 14px;
  color: var(--primaryColor);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  padding-left: 20px;
  margin-bottom: 20px;
}
.sidemenu .sidemenuBody ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.sidemenu .sidemenuBody ul li {
  list-style: none;
}
.sidemenu .sidemenuBody ul li a, .sidemenu .sidemenuBody ul li p {
  text-decoration: none;
  color: #DCDCDC;
  padding: 10px 20px;
  display: flex;
  font-size: 18px;
  font-weight: 300;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.sidemenu .sidemenuBody ul li a span, .sidemenu .sidemenuBody ul li p span {
  font-size: 14px;
}
.sidemenu .sidemenuBody ul .sidemenuLinkActive {
  color: #fff !important;
  font-weight: 600 !important;
}
.sidemenu .sidemenuBody ul .sidemenuLinkActive2 {
  color: #fff !important;
  font-weight: 600 !important;
}
.sidemenu .sidemenuBody ul .sidemenuLinkActive3 {
  color: #fff !important;
  font-weight: 600 !important;
}

.sidemenuActive {
  right: 20px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

nav {
  width: 100%;
  padding-top: 10px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
nav .navMain {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 0;
  background: white;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.044);
}
@media (max-width: 480px) {
  nav .navMain {
    padding: 0px 20px;
    height: 70px;
  }
}
nav .navMain .navCol1 {
  display: flex;
  align-items: center;
}
@media (max-width: 530px) {
  nav .navMain .navCol1 {
    width: 100%;
    justify-content: center;
  }
}
nav .navMain .navCol1 .navLogo {
  width: 200px;
  height: 70px;
}
nav .navMain .navCol1 .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .navMain .navCol2 {
  display: flex;
  align-items: center;
}
@media (max-width: 530px) {
  nav .navMain .navCol2 {
    display: none;
  }
}
nav .navMain .navCol2 .navLink {
  display: flex;
  align-items: center;
  margin-right: 60px;
}
@media (max-width: 930px) {
  nav .navMain .navCol2 .navLink {
    display: none;
  }
}
nav .navMain .navCol2 .navLink ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav .navMain .navCol2 .navLink ul li {
  list-style: none;
}
nav .navMain .navCol2 .navLink ul li a {
  text-decoration: none;
  color: black;
  font-size: 16px;
}
nav .navMain .navCol2 .contactBtn {
  display: flex;
  align-items: center;
}
nav .navMain .navCol2 .contactBtn a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  color: white;
  font-weight: 400;
  font-size: 18px;
  border-radius: 50px;
  transition: 0.3s;
  padding: 14px 28px;
}
nav .navMain .navCol2 .contactBtn a:hover {
  background-color: var(--secondaryColor);
  transition: 0.3s;
}

.title {
  font-weight: 600;
  font-size: 56px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .title {
    font-size: 35px;
  }
}
@media (max-width: 500px) {
  .title {
    font-size: 30px;
  }
}

.titleDesc {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 15px;
}
@media (max-width: 500px) {
  .titleDesc {
    font-size: 16px;
  }
}

footer {
  width: 100%;
}
footer .footerStrip {
  width: 100%;
  padding: 20px 0px;
  background: #0D0D0D;
}
footer .footerStrip .footerStripMain {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 630px) {
  footer .footerStrip .footerStripMain {
    flex-direction: column;
    gap: 10px;
  }
}
footer .footerStrip .footerStripMain .footerStripCol1 {
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  footer .footerStrip .footerStripMain .footerStripCol1 {
    width: 100%;
    justify-content: center;
  }
}
footer .footerStrip .footerStripMain .footerStripCol1 p {
  font-size: 14px;
  color: #99a7ab;
}
@media (max-width: 500px) {
  footer .footerStrip .footerStripMain .footerStripCol1 p {
    text-align: center;
  }
}
footer .footerStrip .footerStripMain .footerStripCol2 {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 500px) {
  footer .footerStrip .footerStripMain .footerStripCol2 {
    width: 100%;
    margin-top: 10px;
    justify-content: center;
  }
}
footer .footerStrip .footerStripMain .footerStripCol2 p {
  font-size: 14px;
  color: #99a7ab;
}
footer .footerStrip .footerStripMain .footerStripCol2 span {
  font-size: 14px;
  color: #fff;
}
footer .footerStrip .footerStripMain .footerStripCol2 a {
  text-decoration: none;
  width: 80px;
}
footer .footerStrip .footerStripMain .footerStripCol2 a:hover img {
  transition: 0.3s;
  filter: grayscale(0);
}
footer .footerStrip .footerStripMain .footerStripCol2 a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footerStrip .footerStripMain .footerStripCol3 {
  display: flex;
  align-items: center;
  gap:10px;
}
@media (max-width: 500px) {
  footer .footerStrip .footerStripMain .footerStripCol3 {
    width: 100%;
    justify-content: center;
  }
}
footer .footerStrip .footerStripMain .footerStripCol3 a {
  font-size: 14px;
  color: #99a7ab;
  text-decoration: none;
}
@media (max-width: 500px) {
  footer .footerStrip .footerStripMain .footerStripCol3 a {
    text-align: center;
  }
}
.fixedWhatsapp a {
  text-decoration: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  background: #199600;
  border: 4px solid white;
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.fixedWhatsapp a:hover {
  transition: 0.3s;
  background: #188003;
}

.fixedButtons {
  position: fixed;
  z-index: 20;
  transform: translateY(-50%);
  top: 50%;
  right: 10px;
  display: flex;
  flex-direction: column;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--secondaryColor);
  background: var(--secondaryColor);
}
.fixedButtons a {
  text-decoration: none;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  background: var(--secondaryColor);
  color: white;
  transition: 0.3s;
  cursor: pointer;
}
.fixedButtons a:hover {
  transition: 0.3s;
  background: var(--primaryColor);
}/*# sourceMappingURL=main.css.map */