@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");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

.container {
  width: 90%;
  margin: 0 auto;
}

a, 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;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

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

textarea {
  resize: none;
  font-family: 'Poppins', sans-serif;
}

main {
  /* overflow: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.shimmer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 105;
  background: rgba(0, 0, 0, 0.295);
  display: none;
}

/* qoutePopup */
.qoutePopup{
    position: fixed;
    z-index: 120;
    background: #161616e6;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    top: 0;
    left: 0;
    padding: 100px 0px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}
.qoutePopupActive{
  visibility: visible;
  opacity: 1;
  transition: .3s;
}
.qoutePopup .qoutePopupBox{
    width: 600px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}
@media(max-width:700px){
  .qoutePopup .qoutePopupBox{
    width: 90%;
  }
}
@media(max-width:480px){
  .qoutePopup .qoutePopupBox{
    padding: 20px;
  }
}
.qoutePopup .qoutePopupBox .closeQoutePopup{
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    right: -40px;
    top: 0;
    color: white;
    transition: .3s;
    font-size: 30px;
}
@media(max-width:700px){
  .qoutePopup .qoutePopupBox .closeQoutePopup{
    top: -40px;
    right: 0;
  }
}
.qoutePopup .qoutePopupBox .closeQoutePopup:hover{
    transition: .3s;
    transform: rotate(90deg);
}
.qoutePopup .qoutePopupBox h2{
    font-size: 20px;
    font-weight: 400;
}
.qoutePopup .qoutePopupBox form{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 15px;
}
.qoutePopup .qoutePopupBox form .formGroup{
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox .formGroup{
    gap: 5px !important;
  }
}
.qoutePopup .qoutePopupBox form .formGroup label{
    font-size: 14px;
    color: #707070;
    width: 100px;
    margin-top: 10px;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox .formGroup label{
    width: 100%;
  }
}
.qoutePopup .qoutePopupBox form .formGroup .dot{
    width: 10px;
    font-size: 14px;
    color: #707070;
    margin-top: 10px;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox .formGroup .dot{
    display: none;
  }
}
.qoutePopup .qoutePopupBox form .formGroup input{
    width: calc(100% - 150px);
    height: 45px;
    padding: 0px 18px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    border: 1px solid #e0e0e0;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox .formGroup input{
    width: 100% !important;
  }
}
.qoutePopup .qoutePopupBox form .formGroup input::placeholder{
    color: #b4b8ba;
}
.qoutePopup .qoutePopupBox form .formGroup input:focus{
    border-color: black;
}
.qoutePopup .qoutePopupBox form .formGroup select{
    width: calc(100% - 150px);
    height: 45px;
    padding: 0px 18px;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    border: 1px solid #e0e0e0;
    display: none;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox .formGroup select{
    width: 100% !important;
  }
}
.qoutePopup .qoutePopupBox form .formGroup select::placeholder{
    color: #b4b8ba;
}
.qoutePopup .qoutePopupBox form .formGroup select:focus{
    border-color: black;
}
.qoutePopup .qoutePopupBox form .formBtnArea{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}
.qoutePopup .qoutePopupBox form button{
    text-decoration: none;
    background: linear-gradient(#0002ff, #00d7fd);
    color: white;
    border: none;
    outline: none;
    border-radius: 50px;
    width: 150px;
    height: 45px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
    gap: 10px;
}
@media(max-width:550px){
  .qoutePopup .qoutePopupBox form button{
    width: 100%;
  }
}
.qoutePopup .qoutePopupBox form button:hover{
    transition: .3s;
    background: linear-gradient(#00d7fd, #0002ff);
}
.qoutePopup .qoutePopupBox form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.whatsappBtn{
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 20px;
}
.whatsappBtn a{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #12a80d;
    color: white;
    font-size: 30px;
    font-weight: 400;
    transition: .3s;
    border-radius: 50px;
    border: 3px solid white;
}
.whatsappBtn a:hover{
    background: #0a7f06;
    transition: .3s;
}

.sidemenu {
  width: 60%;
  position: fixed;
  height: 100vh;
  background: white;
  z-index: 110;
  top: 0;
  right: -110%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .sidemenu {
    width: 90%;
  }
}

.sidemenu .sidemenuHead {
  width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.sidemenu .sidemenuHead .sidemenuClose {
  font-size: 18px;
}

.sidemenu .sidemenuBody {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidemenu .sidemenuBody ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  padding: 10px 20px;
  color: black;
  font-size: 16px;
  display: block;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  background: linear-gradient(#0002ff, #00d7fd);
  color: white;
}

.sidemenuActive {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  right: 0;
}

nav {
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  -webkit-box-shadow: 0 0 20px rgba(8, 8, 8, 0.103);
          box-shadow: 0 0 20px rgba(8, 8, 8, 0.103);
  height: 70px;
}

@media (max-width: 768px) {
  nav {
    height: 60px;
  }
}

nav .navLogo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 230px;
  height: 70px;
  float: left;
}

@media (max-width: 768px) {
  nav .navLogo {
    width: 180px;
    height: 60px;
  }
}
@media (max-width: 415px) {
  nav .navLogo {
    width: 150px;
  }
}

nav .navLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

nav .flag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  height: 70px;
  float: left;
  margin-left: 150px;
}
@media (max-width: 1230px) {
  nav .flag {
    margin-left: 60px;
  }
}
@media (max-width: 955px) {
  nav .flag {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  nav .flag {
    height: 60px;
  }
}

@media (max-width: 480px) {
  nav .flag {
    margin-left: 40px;
  }
}

@media (max-width: 450px) {
  nav .flag {
    margin-left: 20px;
  }
}
@media (max-width: 350px) {
  nav .flag {
    margin-left: 0px;
  }
}

nav .flag .flagBox {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 385px) {
  nav .flag .flagBox {
    margin-left: 20px;
  }
}

nav .flag .flagBox img {
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 480px) {
  nav .flag .flagBox img {
    height: 20px;
  }
}
@media (max-width: 385px) {
  nav .flag .flagBox img{
    height: 15px;
  }
}

nav .flag .flagBox p {
  font-size: 10px;
  margin-top: 5px;
  line-height: 1;
}

nav .navLink {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  float: right;
}

@media (max-width: 1010px) {
  nav .navLink {
    display: none;
  }
}

nav .navLink ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

nav .navLink ul li {
  list-style: none;
}

nav .navLink ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 50px;
  font-size: 14px;
  color: black;
  text-decoration: none;
  font-weight: 500;
  padding: 7px 20px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 50px;
}
@media (max-width: 1130px) {
  nav .navLink ul li a {
    margin-left: 20px;
  }
}

nav .navLink ul li a:hover {
  background: #d5e9ff;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

nav .navLink ul li .navLinkActive {
  background: linear-gradient(#0002ff, #00d7fd);
  color: white;
}

nav .navLink ul li .navLinkActive:hover {
  background: linear-gradient(#0002ff, #00d7fd);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

nav .navBar {
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  height: 60px;
  float: right;
}

@media (max-width: 1010px) {
  nav .navBar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

nav .navBar .navBarBox {
  width: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

nav .navBar .navBarBox span {
  width: 100%;
  height: 2px;
  margin-top: 2px;
  background: black;
}

#banner {
  width: 100%;
  margin-top: 70px;
}

@media (max-width: 768px) {
  #banner {
    margin-top: 60px;
  }
}

#banner .bannerMain {
  width: 100%;
  height: 100%;
}

#banner .bannerMain .bannerBox {
  width: 100%;
  height: calc(100vh - 70px);
  background: black;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox {
    height: calc(100vh - 60px);
  }
}

#banner .bannerMain .bannerBox::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  z-index: 1;
}

#banner .bannerMain .bannerBox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#banner .bannerMain .bannerBox .bannerBoxContent {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 5%;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox .bannerBoxContent {
    padding: 50px 5%;
  }
}

#banner .bannerMain .bannerBox .bannerBoxContent h2 {
  color: white;
  font-size: 2em;
  font-weight: 600;
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox .bannerBoxContent h2 {
    font-size: 20px;
  }
}

#banner .bannerMain .bannerBox .bannerBoxContent h1 {
  color: white;
  font-size: 4em;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox .bannerBoxContent h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerBox .bannerBoxContent h1 {
    font-size: 2em;
    line-height: 1.3;
  }
}

#banner .bannerMain .bannerBox .bannerBoxContent p {
  font-size: 16px;
  color: #c9c9c9;
  line-height: 1.7;
  font-weight: 300;
  width: 50%;
  margin-top: 10px;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox .bannerBoxContent p {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerBox .bannerBoxContent p {
    margin-top: 15px;
  }
}

#banner .bannerMain .bannerBox .bannerBoxContent a {
  text-decoration: none;
  background: linear-gradient(#0002ff, #00d7fd);
  color: white;
  font-size: 14px;
  width: 180px;
  border-radius: 50px;
  padding: 12px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#banner .bannerMain .bannerBox .bannerBoxContent a:hover {
  background: linear-gradient(#00d7fd, #0002ff);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

@media (max-width: 768px) {
  #banner .bannerMain .bannerBox .bannerBoxContent a {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerBox .bannerBoxContent .desktop {
    display: none;
  }
}

#banner .bannerMain .bannerBox .bannerBoxContent .mobileView {
  display: none;
}

@media (max-width: 480px) {
  #banner .bannerMain .bannerBox .bannerBoxContent .mobileView {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#banner .bannerMain .owl-nav {
  display: none;
}

#banner .bannerMain .owl-dot {
  display: none;
}

#boxSection {
  width: 100%;
  padding: 80px 0px 0px 0px;
}

@media (max-width: 768px) {
  #boxSection {
    padding: 30px 0px 0px 0px;
  }
}

#boxSection .boxSectionMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#boxSection .boxSectionMain .boxSectionBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
  overflow: hidden;
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
  position: relative;
  z-index: 0;
}

#boxSection .boxSectionMain .boxSectionBox::after {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  left: 0;
  background-color: #88dbffa3;
  background-image: url("https://www.transparenttextures.com/patterns/diamond-upholstery.png");
  opacity: 1;
}

@media (max-width: 768px) {
  #boxSection .boxSectionMain .boxSectionBox {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  #boxSection .boxSectionMain .boxSectionBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#boxSection .boxSectionMain .boxSectionBox p {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 480px) {
  #boxSection .boxSectionMain .boxSectionBox p {
    font-size: 14px;
  }
}

#about {
  width: 100%;
  padding: 100px 0px 0px 0px;
}

@media (max-width: 768px) {
  #about {
    padding: 50px 0px 0px 0px;
  }
}

#about .aboutMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#about .aboutMain h1 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 768px) {
  #about .aboutMain h1 {
    font-size: 25px;
  }
}

#about .aboutMain p {
  font-size: 16px;
  margin-top: 20px;
  line-height: 1.7;
  opacity: 0.7;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutDesc {
    display: none;
  }
}

#about .aboutMain details {
  display: none;
}

@media (max-width: 768px) {
  #about .aboutMain details {
    display: block;
  }
  #about .aboutMain details summary {
    font-size: 14px;
    margin-top: 10px;
  }
  #about .aboutMain details p:nth-child(2) {
    display: block;
  }
}

#about .aboutMain .aboutVissionMission {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#about .aboutMain .aboutVissionMission .aboutVissionMissionBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutVissionMission .aboutVissionMissionBox {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#about .aboutMain .aboutVissionMission .aboutVissionMissionBox h2 {
  font-size: 25px;
  font-weight: 500;
}

@media (max-width: 768px) {
  #about .aboutMain .aboutVissionMission .aboutVissionMissionBox h2 {
    font-size: 20px;
  }
}
#about .aboutMain .aboutVissionMission .aboutVissionMissionBox ul{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
#about .aboutMain .aboutVissionMission .aboutVissionMissionBox ul li{
  list-style: none;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
#about .aboutMain .aboutVissionMission .aboutVissionMissionBox ul li .icon{
  width: 25px;
  height: 25px;
  color: #0002ff;
  border-radius: 5px;
	font-size :18px;
}
#about .aboutMain .aboutVissionMission .aboutVissionMissionBox ul li p{
  margin-top: 0;
	width: calc(100% - 35px);
}

#about .aboutThumbanil {
  width: 100%;
  height: 50vh;
  margin-top: 100px;
  background: url(../images/parallax.webp);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #about .aboutThumbanil {
    margin-top: 50px;
  }
}

#about .aboutThumbanil::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.527);
  z-index: -1;
}

#about .aboutThumbanil #particles-js {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
}

#about .aboutThumbanil .aboutThumbanilContent {
  position: absolute;
  width: 100%;
  z-index: 2;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 5%;
}

@media (max-width: 768px) {
  #about .aboutThumbanil .aboutThumbanilContent {
    padding: 50px 5%;
  }
}

#about .aboutThumbanil .aboutThumbanilContent h1 {
  font-size: 3em;
  text-align: center;
  color: white;
  font-weight: 400;
  width: 90%;
}

@media (max-width: 768px) {
  #about .aboutThumbanil .aboutThumbanilContent h1 {
    font-size: 30px;
    width: 100%;
    text-align: left;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  #about .aboutThumbanil .aboutThumbanilContent h1 {
    font-size: 22px;
  }
}

#services {
  width: 100%;
  padding: 100px 0px;
}

@media (max-width: 768px) {
  #services {
    padding: 50px 0px;
  }
}

#services h1 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 768px) {
  #services h1 {
    font-size: 25px;
  }
}

#services h5 {
  font-size: 14px;
  opacity: 0.7;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 10px;
}

#services .servicesMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 100px;
  border-top: 1px solid #ebebeb;
  padding-top: 100px;
}

@media (max-width: 768px) {
  #services .servicesMain {
    padding-top: 50px;
    margin-top: 50px;
  }
}

#services .servicesMain:nth-child(2) {
  margin-top: 50px;
  border-top: none;
  padding-top: 0px;
}

#services .servicesMain .servicesSlider {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
	overflow: hidden;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesSlider {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#services .servicesMain .servicesSlider .owl-nav{
	display: none;
}
#services .servicesMain .servicesSlider .owl-dots{
	display: none;
}

#services .servicesMain .servicesSlider .servicesThumbnail {
    width: 100%;
  height: 450px;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesSlider .servicesThumbnail {
    height: 250px;
  }
}

#services .servicesMain .servicesSlider .servicesThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}

#services .servicesMain .servicesContent {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesContent {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 30px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

#services .servicesMain .servicesContent h2 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesContent h2 {
    font-size: 25px;
  }
}

#services .servicesMain .servicesContent h6 {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 20px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  #services .servicesMain .servicesContent h6 {
    margin-top: 10px;
  }
}

#services .servicesMain .servicesContent ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#services .servicesMain .servicesContent ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

#services .servicesMain .servicesContent ul li span {
  font-size: 18px;
  color: #0002ff;
	width: 25px;
}

#services .servicesMain .servicesContent ul li p {
  width: calc(100% - 35px);
  font-size: 16px;
  opacity: 0.7;
  margin-top: 3px;
}

#industries {
  padding: 100px 0px;
  background: #eee;
}

@media (max-width: 768px) {
  #industries {
    padding: 50px 0px;
  }
}

#industries h1 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 768px) {
  #industries h1 {
    font-size: 25px;
  }
}

#industries p {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.7;
  opacity: 0.7;
}

#industries h3 {
  font-size: 20px;
  margin-top: 50px;
  font-weight: 400;
}

#industries .industriesMain {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

#industries .industriesMain .industriesBox {
  width: calc(100% / 3 - 27px);
  background: black;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 870px) {
  #industries .industriesMain .industriesBox {
    width: calc(100% / 2 - 20px);
  }
}
@media (max-width: 640px) {
  #industries .industriesMain .industriesBox {
    width: 100%;
  }
}

#industries .industriesMain .industriesBox .industriesBoxThumbnail {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

#industries .industriesMain .industriesBox .industriesBoxThumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#industries .industriesMain .industriesBox .industriesBoxContent {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(black));
  background: linear-gradient(rgba(0, 0, 0, 0), black);
  display: flex;
  flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}

#industries .industriesMain .industriesBox .industriesBoxContent h2 {
  font-weight: 500;
  font-size: 24px;
  color: white;
}
#industries .industriesMain .industriesBox .industriesBoxContent h4 {
  font-weight: 300;
  font-size: 16px;
  color: white;
  margin-top: 5px;
}
#industries .industriesMain .industriesBox .industriesBoxContent .getQuoteBtn{
  background: white;
  padding: 10px 26px;
  color: black;
  width: fit-content;
  margin-top: 20px;
  border-radius: 50px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s;
}
#industries .industriesMain .industriesBox .industriesBoxContent .getQuoteBtn:hover{
  background: #0002ff;
  transition: .3s;
  color: white;
}

#industries .industriesMain .owl-nav {
  display: none;
}

#industries .industriesMain .owl-dot {
  display: none;
}

#contact {
  width: 100%;
  padding: 0px 0px 100px 0px;
  background: #eee;
}

@media (max-width: 768px) {
  #contact {
    padding: 50px 0px;
  }
}

#contact h1 {
  font-size: 2.5em;
  font-weight: 600;
}

@media (max-width: 768px) {
  #contact h1 {
    font-size: 25px;
  }
}

#contact .contactMain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      align-items: flex-start;
}

#contact .contactMain .contactAddress {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 50px;
  position: sticky;
  top: 80px;
}

@media (max-width: 768px) {
  #contact .contactMain .contactAddress {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
            position: inherit;
  }
}

#contact .contactMain .contactAddress .contactBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  padding: 40px;
  border-radius: 10px;
  margin-top: 50px;
}

#contact .contactMain .contactAddress .contactBox:nth-child(1) {
  margin-top: 0;
}

@media (max-width: 768px) {
  #contact .contactMain .contactAddress .contactBox {
    padding: 20px;
  }
}

#contact .contactMain .contactAddress .contactBox .contactBoxHead{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border-bottom: 2px dashed #eee;
  padding-bottom: 20px;
}
#contact .contactMain .contactAddress .contactBox .contactBoxHead h2{
  font-size: 28px;
  font-weight: 500;
}
#contact .contactMain .contactAddress .contactBox .contactBoxHead p{
  font-size: 16px;
  margin-top: 5px;
}
#contact .contactMain .contactAddress .contactBox h2 {
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  #contact .contactMain .contactAddress .contactBox h2 {
    font-size: 20px;
  }
}

#contact .contactMain .contactAddress .contactBox p {
  font-size: 16px;
  line-height: 1.7;
  margin-top: 5px;
}

#contact .contactMain .contactAddress .contactBox a {
  text-decoration: none;
  font-size: 16px;
  line-height: 1.7;
  margin-top: 5px;
  color: black;
  width: fit-content;
}
#contact .contactMain .contactAddress .contactBox a:hover{
  text-decoration: underline;
}

#contact .contactMain .contactAddress .contactBox a i {
  color: #0002ff;
}
#contact .contactMain .contactAddress .contactBox .contactInfoBox{
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
#contact .contactMain .contactAddress .contactBox .contactInfoBox span{
  font-size: 14px;
  color: #676767;
}
.contactBoxList{
  border-top: 1px dashed #0002ff;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contactBoxList .contactBoxListItem{
  width: 100%;
  border-top: 1px dashed #0002ff;
  padding-top: 20px;
}
.contactBoxList .contactBoxListItem:nth-of-type(1){
  border-top: none;
  padding-top: 0;
}
.contactBoxList .contactBoxListItem h3{
  font-size: 16px;
  font-weight: 500;
}
.contactBoxList .contactBoxListItem p{
  margin-top: 10px !important;
  margin-bottom: 0 !important;
}
.contactBoxList .contactBoxListItem .cntBox{
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
.contactBoxList .contactBoxListItem .cntBox span{
  font-size: 14px;
  color: #676767;
}

#contact .contactMain .contactForm {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: white;
  margin-top: 50px;
  border-radius: 10px;
  padding: 40px;
}

@media (max-width: 768px) {
  #contact .contactMain .contactForm {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    padding: 20px;
  }
}

#contact .contactMain .contactForm h2 {
  font-size: 20px;
  font-weight: 500;
}

#contact .contactMain .contactForm form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#contact .contactMain .contactForm form .formGroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

@media (max-width: 768px) {
  #contact .contactMain .contactForm form .formGroup {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
  }
}

#contact .contactMain .contactForm form .formGroup label {
  font-size: 14px;
  opacity: 0.7;
}

#contact .contactMain .contactForm form .formGroup input {
  width: 100%;
  height: 50px;
  outline: none;
  border: 1px solid #a1a1a1;
  margin-top: 10px;
  border-radius: 5px;
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
}

#contact .contactMain .contactForm form .formGroup input:focus {
  border: 1px solid #0002ff;
}

#contact .contactMain .contactForm form .formGroupTextarea {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 20px;
}

#contact .contactMain .contactForm form .formGroupTextarea label {
  font-size: 14px;
  opacity: 0.7;
}

#contact .contactMain .contactForm form .formGroupTextarea textarea {
  width: 100%;
  height: 100px;
  outline: none;
  border: 1px solid #a1a1a1;
  margin-top: 10px;
  border-radius: 5px;
  padding: 15px;
  font-size: 16px;
}

#contact .contactMain .contactForm form .formGroupTextarea textarea:focus {
  border: 1px solid #0002ff;
}

#contact .contactMain .contactForm form .formBtnArea {
  width: 100%;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

#contact .contactMain .contactForm form .formBtnArea button {
  padding: 10px 35px;
  background: linear-gradient(#0002ff, #00d7fd);
  border-radius: 50px;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-weight: 300;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

#contact .contactMain .contactForm form .formBtnArea button:hover {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background: linear-gradient(#00d7fd, #0002ff);
}

footer {
  width: 100%;
  background: black;
  padding: 50px 0px;
}

footer .footermain {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footermain .footerStripRights {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .footermain .footerStripRights {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  footer .footermain .footerStripRights {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .footermain .footerStripRights p {
  font-size: 12px;
  color: #999898;
  margin-top: 0;
}

@media (max-width: 480px) {
  footer .footermain .footerStripRights p {
    text-align: center;
  }
}

footer .footermain .footerStripCreat {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  footer .footermain .footerStripCreat {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 48%;
            flex: 0 0 48%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

@media (max-width: 480px) {
  footer .footermain .footerStripCreat {
    -webkit-box-flex: 100%;
        -ms-flex: 100%;
            flex: 100%;
    margin-top: 30px;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .footermain .footerStripCreat p {
  font-size: 12px;
  color: #999898;
  margin-top: 0;
}

@media (max-width: 480px) {
  footer .footermain .footerStripCreat p {
    text-align: center;
  }
}

footer .footermain .footerStripCreat p i {
  margin: 0px 5px;
  color: red;
}

footer .footermain .footerStripCreat p a {
  text-decoration: none;
  font-size: 12px;
  color: #fff;
  letter-spacing: 1px;
}

.certifiedLogos{
  width: 100%;
  padding: 20px 0px 0px 0px;
  background: black;
}
.certifiedLogos .certifiedLogosHead{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.certifiedLogos .certifiedLogosHead h2 {
  font-size: 20px;
  font-weight: 400;
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  .certifiedLogos .certifiedLogosHead h2 {
    font-size: 25px;
  }
}
.certifiedLogos .certifiedLogosMain{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}
@media(max-width:500px){
  .certifiedLogos .certifiedLogosMain{
    gap: 20px;
  }
}
.certifiedLogos .certifiedLogosMain .certifiedLogosBox{
  width: 30px;
  /* height: 100px; */
}
.certifiedLogos .certifiedLogosMain .certifiedLogosBox img{
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

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