@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;
}

.container {
  position: relative;
}

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;
}


.bg-dark {
  background: #00235a none repeat scroll 0 0 !important;
}

.text-light {
  color: #f8f9fa !important;
}


.hero-slider-section {
  position: relative;
}

.hero-slider-section .carousel-item {
  padding: 80px 0;
  position: relative;
  background-color: #00235a;
  background: url(https://img.freepik.com/free-photo/mystical-numerology-scene_52683-107762.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-slider-section .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.hero-slider-section .carousel-item .left-content h6 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  font-style: italic;
}

.hero-slider-section .carousel-item .left-content h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 300;

}

.hero-slider-section .carousel-item .left-content h2 span {
  color: #FF5E14;
  font-weight: 700;
}

.hero-slider-section .carousel-item .left-content p {
  color: #f8f9fa;
  letter-spacing: 1px;
}

.hero-slider-section .carousel-item .left-content a {
  padding: 10px 20px;
  background-color: #FF5E14;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 500;
  border-radius: 10px 4px;
  display: inline-block;
}

.hero-slider-section .carousel-item .right-content {
  text-align: end;
}

.hero-slider-section .carousel-item .right-content .img-box {
  position: relative;
}

.hero-slider-section .carousel-item .right-content .img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -130px;
  transform: translateY(-50%) rotate(0);
  width: 600px;
  height: 600px;
  background: url(../images/Sun-light-bg.webp) no-repeat;
  background-size: cover;
  animation: rotatingSunLightBg 30s infinite linear;
  opacity: .5;
}

@keyframes rotatingSunLightBg {
  0% {
    transform: translateY(-50%) rotate(0);
  }

  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

.hero-slider-section .carousel-item .right-content .img-box img {
  position: relative;
  animation: zoomInOut 1s infinite alternate;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}


.hero-slider-section .carousel-control-prev svg,
.hero-slider-section .carousel-control-next svg {
  width: 20px;
  height: 20px;
  background-color: #FF5E14;
  padding: 10px;
  border-radius: 5px;
  position: relative;
  z-index: 4;
  opacity: 0;
  transition: all 0.4s;
}

.hero-slider-section .carousel-control-prev:hover svg,
.hero-slider-section .carousel-control-next:hover svg {
  opacity: .5;
}

.hero-slider-section .carousel-control-prev svg:hover,
.hero-slider-section .carousel-control-next svg:hover {
  opacity: 1;
}

@media (min-width:992px) and (max-width:1200px) {
  .hero-slider-section .carousel-item .left-content h2 {
    color: #fff;
    font-size: 48px;
  }
}

@media (max-width:992px) {
  .hero-slider-section .carousel-item .left-content {
    text-align: center;
    margin-top: 20px;
  }

  .hero-slider-section .carousel-item .left-content h2 {
    color: #fff;
    font-size: 46px;
  }

  .hero-slider-section .carousel-item .right-content {
    text-align: center;
  }

  .hero-slider-section .carousel-item .right-content .img-box {
    position: relative;
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .hero-slider-section .carousel-item .right-content .img-box img {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .hero-slider-section .carousel-item .right-content .img-box::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 520px;
    height: 520px;
    background: url(../images/Sun-light-bg.webp) no-repeat;
    background-size: cover;
    animation: rotatingSunLightBg 30s infinite linear;
    opacity: .5;
  }

  @keyframes rotatingSunLightBg {
    0% {
      transform: translate(-50%, -50%) rotate(0);
    }

    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
}

@media (max-width:568px) {

  .hero-slider-section .carousel-item .left-content h2 {
    color: #fff;
    font-size: 32px;
  }

  .hero-slider-section .carousel-item {
    padding: 40px 0 80px;
  }
}


.counter-section {
  padding: 30px 0;
  background-color: #F0F0F0;
}

.counter-section .counter-box {
  text-align: center;
  border-right: 2px dotted #FF5E14;
  padding: 20px 0;
  height: 100%;
}

.counter-section .counter-box h4 {
  font-size: 48px;
  font-weight: 700;
  color: #FF5E14;
  margin-bottom: 12px;
}

.counter-section .counter-box.rate h4 {
  margin-bottom: 0;
}

.counter-section .counter-box p {
  color: #00235a;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin-bottom: 0;

}

.counter-section .counter-box.rate p {
  margin-bottom: 0;
}

.counter-section .counter-box .rating svg {
  color: #FF5E14;
  width: 14px;
  height: 14px;
}

.about-section {
  position: relative;
  padding: 80px 0;
}

.about-section .left-content .img-box {
  width: 100%;
  height: 100%;
  position: relative;
  padding-left: 100px;
}

.about-section .left-content .img-box::before {
  position: absolute;
  left: 0;
  top: -40px;
  content: "";
  height: 200px;
  width: 200px;
  background: url(../images/pattern.png);
  background-repeat: no-repeat;
  background-position: left top;
  opacity: 0.4;
  z-index: -1;

}

.about-section .left-content .img-box img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 60px 0;
  border-right: 4px solid #ffc400;
}

.about-section .right-content {
  padding-left: 40px;
}

.about-section .heading span.sub-heading {
  font-weight: 700;
  letter-spacing: 1px;


}

.about-section .heading h2 {
  font-size: 46px;
  font-weight: 300;
}

.about-section .heading h2 span {
  color: #FF5E14;
  font-weight: 700;
}

.about-section .heading p.tagline {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-style: italic;
  padding-left: 10px;
  border-left: 3px solid #FF5E14;
}

.about-section p.text {
  line-height: 26px;
  letter-spacing: 1px;
  color: #3f3f3f;
}

.about-section .google-rating .progress-box {
  margin-bottom: 12px;
}

.about-section .google-rating p.title {
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 20px;
}

.about-section .google-rating p.title img {
  width: 70px;
}

.about-section .google-rating span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #3f3f3f;

}

.about-section .google-rating .progress-bar {
  background-color: #FF5E14;
  font-size: 12px;
  font-weight: 700;
  opacity: .6;
}

.about-section .btn-box {
  text-align: center;
}

.about-section a.main-btn {
  padding: 6px 30px;
  background-color: #FF5E14;
  color: #fff;
  display: inline-block;
  margin-top: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 10px 2px;
  transition: all 0.3s;
}

.about-section a.main-btn:hover {
  background-color: #00235a;
  color: #fff;
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (min-width:1200px) and (max-width:1400px) {
  .about-section .left-content .img-box {
    padding-left: 40px;
  }

}

@media (min-width:992px) and (max-width:1200px) {
  .about-section .left-content .img-box {
    padding-left: 10px;
  }

  .about-section .right-content {
    padding-left: 0;
  }

}

@media (max-width:992px) {
  .about-section .left-content .img-box {
    padding-left: 0;
    width: 400px;
    margin: 0 auto;
  }

  .about-section .right-content {
    padding-left: 0;
    margin-top: 30px;
  }

}

@media (max-width:568px) {
  .about-section .left-content .img-box {
    padding-left: 0;
    width: 100%;
    margin: 0 auto;
  }

  .about-section .right-content {
    padding-left: 0;
    margin-top: 30px;
  }

}


.service-section {
  padding: 80px 0;
  background-color: #F0F0F0;
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/wave-bg.png) no-repeat;
  opacity: .4;
}

.service-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 600px;
  height: 600px;
  background: url(../images/zodiac-bg.png) no-repeat;
  background-size: cover;
  opacity: .2;
  animation: spinBg 28s infinite alternate;
}

@keyframes spinBg {
  0% {
    transform: rotate(0) scale(.9);
  }

  100% {
    transform: rotate(360deg) scale(1.2);

  }
}

.section-title {
  margin-bottom: 20px;
}

.section-title h2.title {
  font-weight: 400;
  text-transform: capitalize;
}

.section-title h2.title span {
  color: #FF5E14;
  font-weight: 700;
  margin-bottom: 0;
}

.section-title p.tagline {
  text-transform: capitalize;
  color: #3f3f3f;
  letter-spacing: 1px;

}

.service-section .service-box-wrapper {
  margin-top: 20px;
  position: relative;
}

.service-section .service-box-wrapper .service-box {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 40px 2px;
  margin-bottom: 30px;
  transition: all 0.4s;
}

.service-section .service-box-wrapper .service-box.active {
  background-color: #FF5E14;
}

.service-section .service-box-wrapper .service-box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.service-section .service-box-wrapper .service-box .img-box {
  width: 200px;
  height: 200px;
  position: relative;
  margin: 0 auto 20px;
  padding: 10px;
  transition: all 0.4s;
  border-radius: 50%;
}

.service-section .service-box-wrapper .service-box .img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 210px;
  height: 210px;
  border: 1px dotted #3f3f3f;
  transition: all 0.4s;
  border: 1px dotted #3f3f3f;
}

.service-section .service-box-wrapper .service-box.active:hover .img-box::before {
  border: 1px dotted #fff;
}

.service-section .service-box-wrapper .service-box:hover .img-box::before {
  animation: rotation 3s infinite linear;
  border: 1px dotted #FF5E14;
}

@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }

  100% {

    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.service-section .service-box-wrapper .service-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-section .service-box-wrapper .service-box:hover .img-box {
  transform: scale(1.1);
}

.service-section .service-box-wrapper .service-box p.title {
  color: #FF5E14;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.service-section .service-box-wrapper .service-box.active p.title {
  color: #fff;
}

.service-section .service-box-wrapper .service-box p.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: #FF5E14;
}

.service-section .service-box-wrapper .service-box.active p.title::before {
  background-color: #fff;
}

.service-section .service-box-wrapper .service-box p.text {
  color: #3f3f3f;
  letter-spacing: 1px;
}

.service-section .service-box-wrapper .service-box.active p.text {
  color: #f8f9fa;
}

.service-section .service-box-wrapper .service-box a {
  color: #00235a;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
}

.service-section .service-box-wrapper .service-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  border-radius: 5px;
  height: 3px;
  background-color: #FF5E14;
  transition: all 0.4s;
}

.service-section .service-box-wrapper .service-box:hover a {
  transform: scale(1.1);
}

.service-section .service-box-wrapper .service-box a:hover {
  color: #FF5E14;
}

.service-section .service-box-wrapper .service-box.active a:hover {
  color: #fff;
}

.service-section .service-box-wrapper .service-box a:hover::before {
  background-color: #FF5E14;
  width: 40px;
}

.service-section .service-box-wrapper .service-box.active a:hover::before {
  background-color: #fff;
}






.whyus-section {
  position: relative;
  padding: 80px 0;
  background-color: #000;
  overflow: hidden;
}

.whyus-section .left-content h2 {
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  padding-bottom: 8px;
  margin-bottom: 20px;
  position: relative;
}

.whyus-section .left-content h2 span {
  color: #FF5E14;
  font-weight: 700;
}

.whyus-section .left-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #FF5E14;
}

.whyus-section .left-content p {
  color: #cacaca;
  letter-spacing: 1px;

}

.whyus-section .left-content .rating h4 {
  color: #fff;
  font-size: 28px;
  letter-spacing: 1px;
}

.whyus-section .left-content .rating svg {
  color: #FF5E14;
  width: 26px;
  height: 26px;
  margin-left: 4px;
}

.whyus-section .item-box {
  text-align: center;
  margin-bottom: 30px;
}

.whyus-section .item-box .number-box {
  display: block;
  position: relative;
  width: 160px;
  margin: 0 auto;
}

.whyus-section .item-box .number-box h4 {
  font-size: 24px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.whyus-section .item-box p {
  color: #f8f9fa;
  margin-top: 10px;
  margin-bottom: 0;
  text-transform: capitalize;
  letter-spacing: 1px;
}

@media (max-width:992px) {
  .whyus-section .left-content {
    text-align: center;
    margin-bottom: 30px;
  }

  .whyus-section .left-content h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FF5E14;
  }
}

@media (max-width:568px) {
  .whyus-section .item-box .number-box {
    display: block;
    position: relative;
    width: 120px;
    margin: 0 auto;
  }
}


.testimonial-section {
  padding: 80px 0;
  position: relative;
  background-color: #F0F0F0;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -140px;
  width: 460px;
  height: 460px;
  background: url(../images/zodiac-bg.png) no-repeat;
  background-size: cover;
  opacity: .15;
  animation: spinBg 28s infinite alternate;
}

.testimonial-section .section-title {
  margin-bottom: 40px;
}

.testimonial-section .left-content {
  text-align: center;
}

.testimonial-section .left-content h1 {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-image: url(../images/horoscope-astrology-collage.jpg);
  background-size: cover;
  background-position: center;
  font-size: 250px;
  font-weight: 900;
  margin: 0;
  line-height: 0.8;
  margin-bottom: 20px;
  margin-top: -20px;
  margin-left: -8px;
}

.testimonial-section .left-content p {
  font-weight: 800;
  margin-bottom: 0;
  margin-top: -5px;
  font-size: 26px;

}

.testimonial-section .testimonial-box {
  position: relative;
  text-align: center;
  overflow: hidden;
  background-color: #f8f9fa;
  padding: 40px 20px;
  border-radius: 40px 10px;
}

.testimonial-section .testimonial-box .img-box {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
}

.testimonial-section .testimonial-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}

.testimonial-section .testimonial-box p.text {
  letter-spacing: 1px;
  color: #3f3f3f;
  font-size: 14px;
  position: relative;
}

.testimonial-section .testimonial-box p.name {
  font-weight: 700;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  color: #FF5E14;
  margin-bottom: 0;
  font-style: italic;
}

.testimonial-section .testimonial-box span.location {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #3f3f3f;
}

.testimonial-section .testimonial-box span.verified {
  position: absolute;
  top: 10px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;

}

.testimonial-section .testimonial-box span.verified img {
  width: 60px;
}

.testimonial-section .testimonial-box .icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%);
  opacity: .1;
}

@media (max-width:992px) {
  .testimonial-section .left-content {
    margin-bottom: 30px;
  }
}

.blog-section {
  padding: 80px 0;
  background-color: #fff;
  position: relative;
}

.blog-section .blog-box {
  border: 1px solid #e7e7e7;
  padding: 40px 50px;
  background: #ffffff;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
  text-align: center;
}

.blog-section .blog-box img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  border-radius: 10px;

}

.blog-section .blog-box h4 {
  color: #FF5E14;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-section .blog-box p {
  color: #3f3f3f;
}

/* Animation */
.blog-section .blog-box::before,
.blog-section .blog-box::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #FF5E14;
}



.blog-section .blog-box .blog-inner::before,
.blog-section .blog-box .blog-inner::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #FF5E14;
}


.blog-section .blog-box:hover::before,
.blog-section .blog-box:hover::after,
.blog-section .single-item:nth-child(2) .blog-box::before,
.blog-section .single-item:nth-child(2) .blog-box::after {
  width: 100%;
}

.blog-section .blog-box:hover .blog-inner::before,
.blog-section .blog-box:hover .blog-inner::after,
.blog-section .single-item:nth-child(2) .blog-box .blog-inner::before,
.blog-section .single-item:nth-child(2) .blog-box .blog-inner::after {
  height: 100%;
}

/*----- button 1 -----*/
.blog-section .blog-box::before,
.blog-section .blog-box::after {
  transition-delay: 0.2s;
}

.blog-section .blog-box .blog-inner::before,
.blog-section .blog-box .blog-inner::after {
  transition-delay: 0s;
}

.blog-section .blog-box::before {
  right: 0;
  top: 0;
}

.blog-section .blog-box::after {
  left: 0;
  bottom: 0;
}

.blog-section .blog-box .blog-inner::before {
  left: 0;
  top: 0;
}

.blog-section .blog-box .blog-inner::after {
  right: 0;
  bottom: 0;
}

.blog-section .blog-box:hover::before,
.blog-section .blog-box:hover::after {
  transition-delay: 0s;
}

.blog-section .blog-box:hover .blog-inner::before,
.blog-section .blog-box:hover .blog-inner::after {
  transition-delay: 0.2s;
}





/* ====================================================================================================================== */

.innerpage-title {
  padding: 80px 0;
  background: url(../images/sai-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  position: relative;
}

.innerpage-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.innerpage-title h2 {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.innerpage-title ol li {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;

}

.innerpage-title ol li a {
  color: #FF5E14;
}

.innerpage-title ol li.active {
  color: #cacaca;
}

.innerservice-page {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}


.innerservice-page::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -140px;
  width: 460px;
  height: 460px;
  background: url(../images/zodiac-bg.png) no-repeat;
  background-size: cover;
  opacity: .2;
  animation: spinBg 28s infinite alternate;
}

.innerservice-page h2.title {
  color: #000;
  font-weight: 700;
  font-size: 38px;
  margin-bottom: 20px;
}


.innerservice-page p.text {
  letter-spacing: 1px;
  color: #3f3f3f;

}

.innerservice-page .cta-text {
  margin-bottom: 20px;
}

.innerservice-page .cta-text p {
  margin-bottom: 0;
  font-size: 20px;

}

.innerservice-page .cta-text a {
  color: #FF5E14;
  font-weight: 700;
  text-transform: uppercase;
}

.innerservice-page ul li {
  letter-spacing: 1px;
  font-size: 16px;
  margin-bottom: 5px;
  color: #3f3f3f;
}

.innerservice-page .main-btn {
  padding: 10px 20px;
  background-color: #FF5E14;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  border-radius: 4px;
  margin-top: 10px;
  transition: all 0.4s;
}

.innerservice-page .main-btn:hover {
  background-color: #000;
  color: #fff;
}

.innerservice-page .right-content {
  margin-top: 30px;
}

.innerservice-page .right-content .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 40px 10px;

}

.innerservice-page .right-content .img-box img {
  width: 100%;
  height: 100%;
}


.innercontact-page {
  padding: 70px 0;
  position: relative;
  background-color: #fff;
}

.innercontact-page .left-content {
  padding: 50px;
}

.innercontact-page .heading {
  text-align: center;
  margin-bottom: 40px;
}

.innercontact-page .heading h2 {
  color: #000;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
}

.innercontact-page .heading h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  border-radius: 10px;
  height: 3px;
  background-color: #FF5E14;
}

.innercontact-page .heading p {
  color: #3f3f3f;
  letter-spacing: 1px;

}

.innercontact-page .item-box {
  text-align: center;
  margin-bottom: 30px;
}

.innercontact-page .item-box img {
  width: 60px;
  height: 60px;
}

.innercontact-page .item-box p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  color: #FF5E14;
}

.innercontact-page .item-box a {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  letter-spacing: 1px;
  display: block;
  margin-top: 10px;
}

.innercontact-page .item-box.social a {
  display: inline-block;
  margin-bottom: 16px;

}

.innercontact-page .item-box.social a svg {
  width: 20px;
  height: 20px;
  padding: 10px;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  transition: all 0.4s;

}

.innercontact-page .item-box.social p {
  font-size: 18px;
}

.innercontact-page .item-box.social svg:hover {
  transform: scale(1.2);
  background-color: #FF5E14;

}

.innercontact-page .contact-form-box {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  padding: 50px;
  border-radius: 16px;
  height: 100%;
}

.innercontact-page input,
.innercontact-page textarea {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 10px 14px;
  color: #3f3f3f;
  font-weight: 500;
}

.innercontact-page input:focus,
.innercontact-page textarea:focus {
  border: none;
  outline: none;  
}

.innercontact-page input[type='submit'] {
  background-color: #FF5E14;
  color: #fff;
  transition: all 0.3s;
}

.innercontact-page input[type='submit']:hover{
  background-color: #000;
  color: #fff;
}

@media (max-width:1200px){
  .innercontact-page .left-content {
  padding: 50px 20px;

}

.innercontact-page .contact-form-box {
  padding: 50px 20px;
}

}
@media (max-width:992px){
  .innercontact-page .left-content {
  padding: 50px 20px;

}

.innercontact-page .contact-form-box {
  padding: 50px 20px;
  height: auto;
  margin-top: 30px;
}

}