@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

body {
  font-family: "Jost", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



:root {
  --red: #D42F1B;
  --yellow: #E39523;
  --black: #201E1F;
}

a {
  text-decoration: none;
}

p {
  font-size: 17px;
  margin-bottom: 0px;
  text-align: justify;
}


ul {
  padding: 0px;
  margin: 0;
}

ul li {
  list-style: none;
}



section {
  padding: 50px 0px;
}

@media(max-width: 767px) {
  section {
    padding: 20px 0px;
  }

  p {
    font-size: 14px;
    text-align: justify;
  }
}



/* fixed-icon-style-start */
.whatsapp-fixed {
  position: fixed;
  bottom: 100px;
  right: 0;
  padding: 10px 15px;
  background-color: var(--black);
  z-index: 9999;
  transition: 0.3s ease-in-out;
}

.whatsapp-fixed a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 0px !important;
}

.whatsapp-fixed:hover {
  padding: 10px 18px;
}

.phone-fixed {
  position: fixed;
  bottom: 154px;
  right: 0;
  z-index: 9999;
  padding: 10px 13px;
  transition: 0.3s ease-in-out;
  background-color: var(--red);
}

.phone-fixed a {
  text-decoration: none;
  color: #fff;
}

.phone-fixed:hover {
  padding: 10px 16px;
}

/* fixed-icon-style-end */

/* topbar css start */
.topbar {
  background-color: var(--black);
  padding: 8px;
}

.main-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.main-topbar a {
  color: #fff;
}

.main-topbar a i {

  padding-right: 4px;
}

@media(max-width: 767px) {
  .topbar {
    padding: 5px;
  }

  .main-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }

  .main-topbar a i {
    font-size: 12px;
    padding-right: 4px;
  }

  .main-topbar a {
    color: #fff;
    font-size: 12px;
  }
}

/* topbar css end */





/* universal header start==================================== */
.header {
  margin-bottom: 30px;
}

.header h1 {
  position: relative;
  font-size: 28px;
  font-weight: 600;
  display: inline-block;
}

.header h2 {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 600;
}

.header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--red);
}

.header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--red);
}

.header h1 span {
  color: var(--yellow);
}

.header h2 span {
  color: var(--yellow);
}

@media(max-width:768px) {

  .header h1,
  .header h2 {
    font-size: 20px;
  }
}

/* universal header end==================================== */










/* navbar banner style start=============================================== */
.navbar-banner {
  position: relative;
}

.custom-nav {
  position: absolute;
  width: 100%;
  z-index: 1;

}

.custom-nav .main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff;

}

.custom-nav .logo-div .img {
  height: 100px;
}

.custom-nav .nav-elements {
  /* background-color: var(--grey); */
  padding: 10px 20px;
}

.custom-nav .nav-elements .nav-elements-link {
  padding: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

}

.custom-nav .nav-elements .nav-elements-link li {
  list-style: none;
  position: relative;
}

.custom-nav .nav-elements .nav-elements-link li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background-color: none;
  transition: 0.3s ease-in-out;
}

.custom-nav .nav-elements .nav-elements-link li:hover::after {
  background-color: var(--red);
  width: 100%;
}

.custom-nav .nav-elements .nav-elements-link li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  /* text-transform: uppercase; */
  font-size: 16px;
}

.custom-nav .social-icons {
  display: flex;
  gap: 8px;
}

.custom-nav .social-icons a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;

  background-color: var(--red);
  color: #fff;
}

.nav-elements-link .nav-item .dropdown-menu .dropdown-item {
  color: var(--black);
}

.nav-elements-link .nav-item .dropdown-menu {
  height: 450px;
  overflow-y: scroll;
}

.dropdown:hover .dropdown-menu {
  display: block !important;
}

.nav-elements-link .nav-link {
  padding: 0;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.5s ease-in-out;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  z-index: 999;
}

.fixed .social-icons a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;

  background-color: var(--red);
  color: #fff;
}

.fixed .nav-elements .nav-elements-link li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  /* text-transform: uppercase; */
}


.carousel-control-prev {
  left: 0 !important;
  top: 42% !important;
}

.carousel-control-next {
  top: 42% !important;
}

.carousel-control-next,
.carousel-control-prev {
  height: 100px;
}


.mobile-nav {
  display: none;
}

.navigation-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav .logo img {
  height: 50px;
}

.mobile-social-icon a {
  text-decoration: none;
  padding: 9px 12px;
  background-color: var(--red);
  color: #fff;
  border-radius: 50%;
}

.toggle-btn button {
  background: none;
  border: none;
}

/* side bar style start */
.side-bar-parent {
  display: none;

}

.side-bar-parent .side-bar {
  position: relative;
  display: flex;
  justify-content: start;
  padding-top: 100px;
  height: 100%;
}

.side-bar-parent .cross-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.side-bar-parent .cross-icon button {
  color: var(--black);
  font-size: 18px;
  background: none;
  border: none;
  padding: 10px;
}

.side-bar-parent .dropdown-menu {
  height: 450px;
  overflow-y: scroll;
}

.side-bar ul {
  padding-left: 0;
}

.side-bar ul li {
  list-style: none;
  margin-bottom: 10px;
}

.dropdown-menu li {
  margin-bottom: 0px !important;
}

.side-bar ul li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

.video-banner {
  position: relative;
}

.video-banner video {
  position: relative;
}

.video-banner .overlay {
  position: absolute;
  bottom: 7px;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(#000000b7, #0000002c);
}

.video-banner .overlay span {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
}

.video-banner .overlay p {
  font-size: 18px;
  color: #fff;
}

.image-banner {
  position: relative;
}

.image-banner img {
  position: relative;
}

.image-banner .image-overlay {
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 100%;
  /* z-index: 999; */
  background: linear-gradient(#0000006e, #00000000, #00000000, #00000000);
}



@media(max-width:992px) {

  .mobile-nav {
    display: block;
    background-color: #fff;
    padding: 5px 0px;

    z-index: 99;
  }

  .mobfixed {
    position: fixed;
    top: 0;
    width: 100%;
    transition: 0.5s ease-in-out;
  }

  .custom-nav {
    display: none;
  }

  .side-bar-parent {
    display: block;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: 0.5s ease-in-out;
    padding: 20px 10px 10px 10px;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;

  }

  .video-banner .overlay span {
    font-size: 30px;
    color: var(--red);
    font-weight: 600;
  }

  .video-banner .overlay p {
    font-size: 18px;
    color: #fff;
  }

}

@media(max-width:768px) {
  .video-banner .overlay span {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
  }

  .video-banner .overlay p {
    font-size: 14px;
    color: #fff;
    display: none;
  }

  .mobile-social-icon {
    display: none;
  }

  .toggle-btn img {
    height: 50px;
  }


}








/* mobile nav css end */
/* navbar banner style end=============================================== */



/* subpage banner start */

.sub-page {
  background: linear-gradient(to right, #d42d1b, #201e1fda), url();
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 150px 50px;
}

.sub-page-heading {

  text-align: start;
}

.sub-page-heading h1 {
  color: #fff;
  font-size: 38px;
  font-weight: 600;
}

.sub-page-heading p a,
.sub-page-heading p i {
  text-decoration: none;
  color: #fff;
}

@media(max-width: 768px) {
  .sub-page-heading h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }

  .sub-page-heading p {
    font-size: 12px;
  }

  .sub-page {
    background: linear-gradient(to right, #d42d1b, #201e1fda), url();
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 10px;
  }
}

/* sub page banner end */




/* about css start */
.about-section {
  background-color: #f3f3f3;
}

.about-sec-post img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 100%;
}

.about-content .about-content-heading {
  margin-bottom: 15px;
}

.about-content .about-content-heading h1 {
  font-size: 18px;
  font-weight: 600;
}

.about-content .about-content-heading span {
  background: var(--red);
  color: #fff;
}

.about-content .about-content-heading h2 {
  font-size: 42px;
  font-weight: 700;
}

@media(max-width: 767px) {
  .about-content .about-content-heading h2 {
    font-size: 25px;
    font-weight: 700;
  }
}

/* about css end */






/* about card css start */
.about-three-card-section {
  background-color: #f5f5f5;
}

.three-card-about {
  background-color: #fff;
  padding: 20px 20px;
  color: #000;
  min-height: 300px;
  max-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}



.three-card-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.three-card-img img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

.name-three-card {
  text-align: center;
}

.name-three-card h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.name-three-card p {
  text-align: center;
}

@media(max-width: 767px) {
  .three-card-about {
    padding: 10px 0px;
  }

  .name-three-card h2 {
    font-size: 17px;
    margin-bottom: 10px;
  }
}

/* about card css end */

/* products css start */

.product-card {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: #fff;
  margin-bottom: 25px;
}



.product-card-name {
  padding: 10px;
  text-align: center;
}

.product-card-name h3 {
  font-size: 18px;
  font-weight: 600;
}

.product-card .product-card-name {
  background: var(--red);
  color: #fff;
}


.intrested-pro {
  background: linear-gradient(#00000050), url(../img/product/bp-pro-int-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px;
}

.name-inte-pro h2 {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}

.pro-int-btn a {
  background-color: var(--red);
  color: #fff;
  padding: 25px 50px;
  font-size: 18px;
  font-weight: 600;
}

@media(max-width: 767px) {
  .intrested-pro {
    padding: 30px 0px;
  }

  .pro-int-btn a {
    background-color: var(--red);
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 600;
  }

  .name-inte-pro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
  }

  .name-inte-pro {
    margin-bottom: 20px;
  }

  .pro-card-name h3 {
    font-size: 16px;
  }

  .product-card .product-text h3 {
    font-size: 18px;
  }
}


/* products css end */


/* why choose us css start */



.all-heading-use {
  margin-bottom: 50px;
}

.all-heading-use h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.all-heading-use h3 {
  font-size: 35px;
  font-weight: 700;
}

.all-heading-use h3 span {
  background: var(--red);
  color: #fff;
  padding: 0px 2px;
}






.why-choose-nsv {

  background-color: #f5f5f5;

}

.why-choose-nsv .content small {
  color: var(--red);
  font-size: 16px;
}

.why-choose-nsv .highlight {
  background: var(--red);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.why-choose-nsv .image-wrapper img {
  border-radius: 20px;
  object-fit: cover;
  box-shadow: none !important;
}

.why-choose-nsv .fa-solid {
  background: #e8f0ff;
  border-radius: 50%;
  padding: 10px;
}

@media (max-width: 767px) {
  .why-choose-nsv .content {
    text-align: center;
  }

  .why-choose-nsv .col-6 {
    width: 100%;

  }

  /* .why-choose-nsv .fa-solid {
    margin: 0 auto 10px auto;
  } */
  .fw-semibold {
    text-align: start;
  }
}






@media(max-width: 767px) {
  .all-heading-use {
    margin-bottom: 25px;
  }

  .all-heading-use h2 {
    margin-bottom: 10px;
  }

  .all-heading-use h3 {
    font-size: 23px;
    font-weight: 700;
  }


}

/* why choose us css end */



/* ======================  Blog Start  ======================*/
.blog-item {
  border-radius: 10px;
  border: 2px solid #000;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.blog-item:hover {
  border-color: var(--red);
  background-color: var(--red);
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-item:hover .blog-text .text--base {
  color: #fff !important;
}

.blog-item .blog-text a {
  color: #000;
  font-weight: 600;
  font-size: 22px;
}

.blog-item:hover .blog-text a {
  color: #fff;
}


.blog-item .blog-img {
  overflow: hidden;
  border-radius: 10px;
}

.blog-item .blog-img img {
  transition: all 0.3s ease-in-out;
}

.blog-item .blog-text .fs-16 {
  padding: 20px 0 10px;
}

.blog-item .blog-text p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000;
  font-weight: 500;
}

.blog-item:hover .blog-text p {
  color: #ffff;
}


.blog-section .blog-details .blog-text p {
  color: var(--dark) !important;
  text-align: justify !important;

}

.btn.btn--base {
  background-color: var(--red);
  color: #fff !important;
  font-weight: bold;
}

.btn.btn--base {
  background-color: var(--red);
}

/* ======================  Blog End  ======================*/



/* blog-details css start */
.blog-detail-content {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 5px;
}

.blog-detail-date {
  margin-bottom: 15px;
}

.blog-detail-date span {
  color: #555555;
  font-size: 14px;
}

.blog-detail-heading h1 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
}

.blog-detail-post {
  margin-bottom: 15px;
}

.blog-detail-para h2 {
  font-size: 21px;
  font-weight: 600;
}

.blog-detail-para p {
  font-size: 16px;
  text-align: justify;
}



.main-recent-blog {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
}

.recent-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.recent-card {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.recent-card:last-child {
  border-bottom: none;
}

.recent-card-post img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-card-detail {
  flex: 1;
}

.recent-date {
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.recent-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 0;
}


@media(max-width: 767px) {
  .blog-detail-heading h1 {
    font-size: 19px;
  }

  .blog-detail-para h2 {
    font-size: 19px;
  }

  .blog-detail-para p {
    font-size: 14px;
  }

}

/* blog-details css end */




/* contact us css start */

.contact-section {
  background-color: #f5f5f5;
}

.contact-info {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;

}

.contact-info h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 12px;
  font-weight: 500;
  text-align: start;
}

.contact-info p a {
  color: #000;
}

.contact-info i {
  vertical-align: middle;
  padding-right: 4px;
  color: var(--red);
}

.btn-form {
  background-color: var(--black);
  color: #fff;
  transition: 0.5s ease-in-out;
}

.btn-form:hover {
  background-color: var(--red);
  color: #fff;
}

.map-guaranted iframe {
  width: 100%;
  height: 450px;
}

/* captcha start */
.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  height: 50px;
}

.captchasep1 .captcha-codes-sec {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  border-radius: 5px;
  border-top: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  font-weight: bolder !important;
}

.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 18px;
  padding: 10px;
  height: 100%;
  /* color: #fff; */
  font-weight: bolder !important;
}

@media (max-width: 768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 24px;
  }

  .captchasep1 {
    margin-bottom: 10px;
  }
}

@media (max-width: 992px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 18px;
  }
}

.captchasep1 .captcha-codes-sec {
  margin-bottom: 10px;
}

.captchasep1 .captcha-codes-sec button {
  font-style: italic;
  font-size: 22px;
  outline: none;
  background: transparent;
  height: 100%;
  border: none;
  font-weight: bolder;
}

.captchasep1 .captcha-codes-sec button i {
  background: #000;
  color: #fff;
  padding: 3px;
  border-radius: 6px;
}

@media screen and (max-width: 600px) {
  .captchasep1 {
    display: flex;
    flex-direction: column !important;
  }

  .captchasep1 .captcha-codes-sec {
    border-left: 1px solid #ced4da;
    border-right: 1px solid #ced4da;
    border-bottom: 1px solid #ced4da;
    margin-top: 3px;
  }

  .contact-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

/* contact us css end */




/* success style start */
.success-form {
  padding: 50px 0;
}

.success-form .success-head {
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 50px 10px;
}

.success-form .success-head i {
  color: #87BD48;
  font-size: 100px;
  border: 10px solid #87BD48;
  border-radius: 50%;
  padding: 15px 22px;
}

.success-form .success-head h1 {
  color: #155391;
  margin: 13px 0 0;
}

.success-form .success-head p {
  margin-bottom: 28px !important;
}

.success-form .success-head a {
  background: var(--yellow);
  color: #fff;
  padding: 10px 20px;
}

/*success style end */

/* enq page css start */
.enq-post {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

}

.enq-post img {
  border-radius: 5px;
}

.enq-detail {
  margin-bottom: 20px;
}

.enq-detail h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.enq-detail ul {
  padding-left: 10px;
}

.enq-detail ul li {
  list-style: disc;
}

.enq-btn button {
  background-color: var(--red);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.enq-form-btn {
  background-color: var(--red);
  color: #fff;
}

.enq-form-btn:hover {
  background-color: var(--red);
  color: #fff;
}


@media(max-width: 767px) {
  .enq-detail ul li {
    font-size: 12px;
    line-height: 1.7;
  }

  .enq-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .enq-post img {
    margin-bottom: 12px;
  }

}

/* enquire page css end */


/* indusrty css start */
.gallery-card {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
  margin: 10px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.gallery-card {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* industry css end */





/* footer css start */
.footer {
  background-color: #111111;
  padding: 100px 0px;
  color: #8a8989;

}

.footer-heading {
  margin-bottom: 20px;
}

.footer-heading h2 {
  background: var(--red);
  color: #fff;
  display: inline-block;
  padding: 5px;
  font-size: 22px;
  font-weight: 600;
}

.footer-cont-add h3 {
  font-size: 18px;
  font-weight: 600;
  color: #8a8989;
}

.footer-cont-add p {
  color: #8a8989;
}

.footer-cont-list {
  margin-bottom: 25px;
}

.footer-cont-list p,
a {
  color: #8a8989;

}

.footer-cont-list p {
  border-bottom: dotted;
  display: inline-block;
  line-height: 2;
}

.footer-icon {
  display: flex;
  gap: 15px;
}

.footer-icon a {
  background-color: #fff;
  color: #000;
  padding: 10px 15px;
  border-radius: 50%;
}

.footer-icon a:hover {
  background-color: var(--red);
  color: #fff;
}

.links-ul li a {
  line-height: 1.7;
}

.links-ul li a i {
  padding-right: 4px;
}

.links-ul li a:hover {
  color: var(--red);
}

.footer-para p {
  line-height: 1.8;
}

@media(max-width: 991px) {
  .footer-div {
    margin: 0px !important;
    margin-bottom: 20px !important;
  }
}

@media(max-width: 767px) {
  .footer {
    padding: 40px 0px;
  }

  .footer-heading {
    margin-bottom: 0px;
  }

  .footer-heading h2 {
    font-size: 18px;
  }

  .footer-cont-add h3 {
    font-size: 14px;
  }

  .footer-icon a {
    padding: 5px 10px;
  }

  .footer-div {
    margin: 0px !important;
    margin-bottom: 20px !important;
  }

  .links-ul li a {
    line-height: 1.5;
    font-size: 12px;
  }
}


/* copyright */
.copyright-section {
  background: var(--red);
  padding: 10px;
}

.main-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-side p,
.left-side p {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0px;
}

.left-side p a {
  text-decoration: none;
  color: var(--lite-blue);
}

@media (max-width: 767px) {
  .copyright-section {
    background: var(--red);
    padding: 0px;
  }

  .footer-line {
    margin-bottom: 10px;
  }

  .main-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .right-side p {
    text-align: center;
  }

  .logo-icon {
    margin-bottom: 20px;
  }

  .right-side p,
  .left-side p {
    color: #fff;
    font-size: 12px;
    margin-bottom: 0px;
  }
}

/* footer css end */