@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 {
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

::-webkit-scrollbar {
  display: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Roboto", sans-serif !important;
}

.display-none {
  display: none !important;
}

.display-block {
  display: block !important;
}

.pointer-cursor {
  cursor: pointer !important;
}

.container {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}



/* ------------------------------------------------------------------------------------------------------------------- */

.banner-img img {
  width: 100%;
  height: 100%;
  position: relative;
}




.quick-service {
  padding: 30px 0;
  background-color: #00111d;
  position: relative;
}


.quick-service .item-box {
  text-align: center;
  background-color: #fff4df;
  border-radius: 20px;
  transition: all 0.3s;
}

.quick-service .item-box a {
  display: block;
  padding: 30px;
  position: relative;
}

.quick-service .item-box:hover {
  box-shadow: #fed001 0px 5px 15px;
  transform: scale(1.1);
  background-color: #fff;
}

.quick-service p.text {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 6px;
  font-weight: 600;
  color: #00111d;
}

@media(max-width:992px) {
  .quick-service .item-box {
    margin-bottom: 20px;
  }
}


@media(max-width:768px) {
  .quick-service .item-box {
    border-radius: 8px;
  }

  .quick-service .item-box a {
    display: block;
    padding: 20px;
    position: relative;
  }
}



.quick-service .cta-text {
  padding-top: 30px;
  text-align: center;
}

.quick-service .cta-text p {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.quick-service .cta-text span {
  font-size: 20px;
  font-weight: 400;
  color: #fed001;
  display: block;
  padding: 0 120px;
  margin-bottom: 10px;
}

.quick-service .cta-text .button-grp {
  margin-top: 20px;
}

.quick-service .cta-text .button-grp a {
  display: inline-block;
  padding: 10px 16px;
  margin-right: 10px;
  background-color: #fed001;
  border-radius: 20px 4px;
  color: #00111d;
  font-weight: 700;
  transition: all 0.3s;
  overflow: hidden;
}

.quick-service .cta-text .button-grp a:last-child {
  margin-right: 0;
}

.quick-service .cta-text .button-grp a:hover {
  border-radius: 4px 20px;
  background-color: #e40000;
  color: #fff;

}

@media (min-width:992px) and (max-width:1200px) {
  .quick-service .cta-text p {
    font-size: 22px;
  }

  .quick-service .cta-text span {
    font-size: 18px;
    padding: 0 50px;
  }
}

@media (max-width:992px) {
  .quick-service .cta-text p {
    font-size: 24px;
  }

  .quick-service .cta-text span {
    font-size: 18px;
    padding: 0;
  }
}

@media (max-width:568px) {
  .quick-service .cta-text .button-grp a {
    display: inline-block;
    padding: 10px 8px;
    margin-right: 6px;
    border-radius: 20px 4px;
  }
}



.top-service-section {
  padding: 60px 0;
  background-color: #fff4df;
}

.top-service-section .section-title {
  margin-bottom: 30px;
}

.top-service-section .section-title h2 {
  font-size: 36px;
  color: #e40000;
  position: relative;
  padding-bottom: 10px;
}

.top-service-section .section-title h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 60px;
  height: 4px;
  background-color: #e40000;
}

.top-service-section .section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  width: 20px;
  height: 4px;
  background-color: #00111d;
}

.top-service-section .service-box-one {
  position: relative;
  text-align: center;
}

.top-service-section .service-box-one .img-box {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  border-top: 5px solid #fed001;
  border-left: 1px solid #fed001;
  border-right: 1px solid #fed001;
}

.top-service-section .service-box-one .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.top-service-section .service-box-one a {
  width: 80%;
  background-color: #fed001;
  display: inline-block;
  padding: 14px 20px;
  color: #00111d;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  transform: translateY(-30px);
  border-radius: 50px;
  border: 1px solid #fff;
  transition: all 0.2s;
}

.top-service-section .service-box-one:hover img {
  transform: scale(1.3);

}

.top-service-section .service-box-one:hover a {
  background-color: #e40000;
  color: #fff;
}

@media (min-width:992px) and (max-width:1200px) {

  .top-service-section .service-box-one a {
    width: 90%;
    padding: 14px;
    font-size: 16px;
  }
}

@media (max-width:568px) {
  .top-service-section .service-box-one .img-box {
    border-radius: 10px;
  }

  .top-service-section .service-box-one a {
    width: 90%;
    padding: 10px;
    font-size: 16px;
    transform: translateY(-20px);
  }
}

.about-section {
  position: relative;
  padding: 0 0 40px;
  background-color: #fff4df;
}

.about-section .section-title h2.title {
  color: #00111d;
  font-size: 38px;
  font-weight: 300;
}

.about-section .section-title h2.title span {
  font-weight: 800;
}

.about-section .section-title p {
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
  padding: 6px 10px;
  border-left: 4px solid #e40000;
  font-size: 18px;
}

.about-section .img-wrapper {
  margin-top: 30px;
}

.about-section .img-wrapper .video-box {
  width: 100%;
  height: 100%;
}

.about-section .img-wrapper .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section .img-wrapper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}

@media (max-width:992px) {
  .about-section .img-wrapper .img-box {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    border: 1px solid #00111d;
  }

  .about-section .img-wrapper .video-box {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
  }
}

.about-section .cta-content {
  padding: 40px 0 20px;
  text-align: center;
}

.about-section .cta-content p {
  font-size: 26px;
  font-weight: 700;
  color: #e40000;
}

.about-section .cta-content a {
  font-size: 64px;
  display: block;
  font-weight: 700;
  color: #e40000;
  animation: textAnime1 1s infinite alternate;
}

@keyframes textAnime1 {
  0% {
    transform: translateY(10px);
    color: #e40000;
  }

  50% {
    transform: translateY(-10px);
    color: #00111d;
  }

  100% {
    transform: translateY(10px);
    color: #e40000;
  }
}

@media (max-width:768px) {
  .about-section .cta-content p {
    font-size: 22px;
  }

  .about-section .cta-content a {
    font-size: 52px;
    display: block;
  }

}

@media (max-width:568px) {
  .about-section .cta-content p {
    font-size: 18px;
  }

  .about-section .cta-content a {
    font-size: 32px;
    display: block;
  }

}


.main-service {
  padding: 60px 0;
  position: relative;
  background-color: #00111d;
}

.main-service .section-title h2.title {
  color: #fff;
  font-size: 38px;
  font-weight: 300;
}

.main-service .section-title h2.title span {
  font-weight: 800;
  color: #fed001;
}

.main-service .section-title p {
  text-transform: uppercase;
  font-style: italic;
  color: #fff4df;
  letter-spacing: 1px;
  font-size: 16px;
}




.main-service .service-boxes-wrapper {
  margin-top: 30px;
}

.main-service .service-boxes-wrapper .service-box {
  margin-bottom: 30px;
  position: relative;
}

.main-service .service-boxes-wrapper .service-box .box-img {
  width: 100%;
  height: 360px;
  padding: 16px;
  border-radius: 20px;
  border: 1px dashed #fff4df;
  overflow: hidden;
}

.main-service .service-boxes-wrapper .service-box .box-img img {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s;
  filter: grayscale(50%);
}

.main-service .service-boxes-wrapper .service-box:hover .box-img img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.main-service .service-boxes-wrapper .service-box .box-content {
  text-align: center;
  padding: 10px;

}

.main-service .service-boxes-wrapper .service-box .box-content h4 a {
  padding: 15px 20px;
  width: fit-content;
  display: block;
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: -40px auto 20px;
  position: relative;
  background-color: #fed001;
  transition: all 0.4s;
  color: #00111d;
  border: 1px dashed transparent;

}

.main-service .service-boxes-wrapper .service-box .box-content h4 a:hover {
  background-color: #FFD700;
  border: 1px dashed #270d0c;
  color: #270d0c;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.main-service .service-boxes-wrapper .service-box .box-content p {
  color: #fff;
  line-height: 28px;
  height: 85px;
  overflow: hidden;
}

.main-service .service-boxes-wrapper .service-box .box-content .main-btn {
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  background-color: #FFD700;
  color: #270d0c;
  font-weight: 600;
}

.main-service .service-boxes-wrapper .service-box .box-content .main-btn svg {
  margin-right: 5px;
}


@media (max-width:568px) {
  .main-service .service-boxes-wrapper .service-box .box-img {
    width: 100%;
    height: 320px;
  }
}

.live-work {
  padding: 60px 0;
  background-color: #fff4df;
}

.live-work .section-title {
  margin-bottom: 50px;
}

.live-work .section-title h6 {
  text-transform: capitalize;
}

.live-work .section-title h6 svg {
  max-width: 10px;
  margin-right: 4px;

}

.live-work .section-title h2.title {
  text-transform: capitalize;
  color: #00111d;
  font-size: 38px;
  font-weight: 300;
}

.live-work .section-title h2.title span {
  font-weight: 800;
}

.live-work .section-title p {
  text-transform: capitalize;
}

.live-work .service-list {
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  margin-bottom: 30px;
  transition: all 0.3s;
}

.live-work .service-list:hover {
  background-color: #fff;
}

.live-work .service-list h6 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  padding-bottom: 16px;
  margin-bottom: 12px;
  font-size: 20px;
  color: #00111d;
}

.live-work .service-list li {
  text-transform: capitalize;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.7);
}

.live-work .service-list li svg {
  color: #00111d;
}

.live-work .service-list a {
  display: block;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #00111d;
  text-transform: uppercase;
  transition: all 0.3s;

}

.live-work .service-list a:hover {
  background-color: #00111d;
  color: #fff;
  border-color: #FFD700;
}



.testimonial-section {
  padding: 30px 0 60px;
  position: relative;
  background-color: #fff;

}


.testimonial-section .section-title {
  margin-bottom: 30px;
}

.testimonial-section .section-title h6 {
  text-transform: uppercase;
  color: #e40000;
  letter-spacing: 1px;
}

.testimonial-section .section-title h2 {
  text-transform: capitalize;
  color: #00111d;
  font-size: 38px;
  font-weight: 300;
}

.testimonial-section .section-title h2 span {
  font-weight: 800;
}

.testimonial-section .testi-box {
  width: 100%;
  height: 100%;
  padding: 30px;
}

.testimonial-section .testi-box img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border: 2px outset rgba(255, 255, 255, 0.3);
}

.testimonial-section .main-content-wrapper {
  position: relative;

}

.testimonial-section .video-box {
  position: absolute;

  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.testimonial-section .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width:992px) and (max-width:1200px) {
  .testimonial-section .testi-box {
    padding: 10px;
  }
}

@media (max-width:992px) {
  .testimonial-section .section-title {
    margin-bottom: 30px;
  }

  .testimonial-section .testi-box {
    padding: 10px;
  }
}


.add-design1 {
  overflow: hidden;
  padding: 15px 15px;
  border-radius: 40px;
  text-align: center;
  background: url(../image/shiva-bg.webp) no-repeat;
  background-size: cover;
  background-position: bottom;
  position: relative;
  background-attachment: fixed;
}
.add-design1::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.add-design1 .head-align {
  align-items: center;
  justify-content: center;
  position: relative;
}

.add-design1 .right-img {
  padding: 0;
}

.add-design1 .right-img .video-box {
  width: 100%;
  height: 660px;
  padding: 30px;
}

.add-design1 .right-img .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  border-radius: 20px;
  border: 1px inset #e40000;
}

.add-design1 .add-love {
  text-align: center;
  padding: 15px 15px;
}

.add-design1 .add-love .img-box img{
  width: 320px;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (min-width:992px) and (max-width:1200px) {
  .add-design1 .right-img .video-box {
    width: 100%;
    height: 580px;
    padding: 30px;
  }
}

@media (max-width:992px) {
  .add-design1 .right-img .video-box {
    width: 100%;
    height: 580px;
    padding: 30px;
  }
}
@media (max-width:568px) {
  .add-design1 .right-img .video-box {
    width: 100%;
    height: 460px;
    padding: 10px;
  }
}

.add-design1 .add-love strong {
  font-weight: 600;
  color: #fff;
  padding: 0 0 8px;
  font-size: 35px;
  text-transform: capitalize;
  display: block;
  animation: blk2 0.9s infinite;
}

@keyframes blk2 {
  0% {
    color: #ffffff;
  }

  50% {
    color: #ff6500;
  }

  100% {
    color: #ffffff;
  }
}
.add-design1 .add-love p.text{
  color: #fed001;
  letter-spacing: 1px;
  font-size: 17px;
}
.add-design1 .add-love p.cta-text {
  line-height: 30px;
  color: #fff4df;
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
}

.add-design1 .add-love a {
  font-weight: 700;
  color: #ffffff;
  font-size: 65px;
  display: inline-block;
  transition: .5s auto;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translatey(0px);
    color: #ffcd00;
  }

  50% {
    transform: translatey(-15px);
    color: #ffffff;
  }

  100% {
    transform: translatey(0px);
    color: #ffcd00;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .add-design1 .add-love strong {
    font-size: 26px;
  }

  .add-design1 .add-love p {
    font-size: 22px;
    font-weight: 400;
  }

}

@media (max-width:992px) {
  .add-design1 .add-love strong {
    font-size: 26px;
  }

  .add-design1 .add-love p {
    font-size: 22px;
    font-weight: 400;
  }

  .add-design1 .add-love a {
    font-size: 52px;
  }

}

@media (max-width:568px) {
  .add-design1 .right-img img {
    width: 280px;
  }

  .add-design1 .add-love strong {
    font-size: 22px;
  }

  .add-design1 .add-love p {
    font-size: 18px;
    font-weight: 400;
  }

  .add-design1 .add-love a {
    font-size: 34px;
  }

}

.certfiicate-section {
  padding: 60px 0;
}

.certfiicate-section .section-title {
  margin-bottom: 30px;
}

.certfiicate-section .section-title h6 {
  text-transform: uppercase;
  color: #e40000;
  letter-spacing: 1px;
}

.certfiicate-section .section-title h2 {
  text-transform: capitalize;
  color: #00111d;
  font-size: 38px;
  font-weight: 300;
}

.certfiicate-section .section-title h2 span {
  font-weight: 800;
}

.certfiicate-section .section-title p {
  text-transform: capitalize;
  letter-spacing: 1px;

  font-style: italic;
  color: #00111d;
}

.certfiicate-section img {
  width: 100%;
  height: 100%;
}