@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", sans-serif;
  word-break: break-word;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


:root {
  --blue: #3363B3;
  --dark: #000;
}



h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  line-height: 1.3;
  font-weight: 700;
}


h1 {
  font-size: 3.75rem;
}

@media screen and (max-width: 1399px) {
  h1 {
    font-size: 3.125rem;
  }
}

@media screen and (max-width: 1199px) {
  h1 {
    font-size: 2.8125rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 575px) {
  h1 {
    font-size: 1.875rem;
  }
}

h2 {
  font-size: 2.8125rem;
}

@media screen and (max-width: 1199px) {
  h2 {
    font-size: 2.1875rem;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media screen and (max-width: 575px) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.875rem;
}

@media screen and (max-width: 1399px) {
  h3 {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 1199px) {
  h3 {
    font-size: 1.5625rem;
  }
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 1.4375rem;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 575px) {
  h3 {
    font-size: 1.25rem;
  }
}

h4 {
  font-size: 1.5rem;
}

@media screen and (max-width: 1399px) {
  h4 {
    font-size: 1.3125rem;
  }
}

@media screen and (max-width: 1199px) {
  h4 {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 991px) {
  h4 {
    font-size: 1.1875rem;
  }
}

h5 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1399px) {
  h5 {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 1199px) {
  h5 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 991px) {
  h5 {
    font-size: 1.0625rem;
  }
}

@media screen and (max-width: 767px) {
  h5 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 575px) {
  h5 {
    font-size: 1rem;
  }
}

h6 {
  font-size: 1rem;
}

@media screen and (max-width: 1399px) {
  h6 {
    font-size: 1rem;
  }
}

@media screen and (max-width: 1199px) {
  h6 {
    font-size: 0.9375rem;
  }
}

@media screen and (max-width: 991px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  h6 {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 575px) {
  h6 {
    font-size: 0.875rem;
  }
}

.section-title h6 {
  font-weight: 500;
}

.btn.btn--base {
  background-color: var(--blue);
  color: #fff !important;
  font-weight: bold;
}

.btn.btn--base {
  background-color: var(--blue);
}




a {
  text-decoration: none;
}

p {
  font-size: 17px;
  font-weight: 400;
  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: 12px;
    text-align: justify;
  }
}




/* fixed icons css start */
.fix-icons .whatsapp-icon {
  position: fixed;
  top: 80%;
  right: 2%;
  z-index: 999999;
}

.fix-icons .phone-icon {
  position: fixed;
  top: 80%;
  left: 2%;
  z-index: 999999;
}

.fix-icons .whatsapp-icon a {
  color: #fff;
  font-size: 24px;
  background: var(--blue);
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(0, 60, 255, 0.226) 0px 0px 5px 5px;
}

.fix-icons .phone-icon a {
  color: #fff;
  font-size: 24px;
  background: var(--blue);
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: rgba(0, 60, 255, 0.226) 0px 0px 5px 5px;

}

@media screen and (max-width: 767px) {
  .fix-icons .whatsapp-icon a {
    font-size: 16px;
    padding: 6px 10px;
  }

  .fix-icons .phone-icon a {
    font-size: 16px;
    padding: 7px 10px;
  }
}

/* end of fixed icons css */



/* navbar css start */


.navbar-rounded {
  background-color: var(--blue);
  padding: 10px 0px;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: rgba(168, 166, 166, 0.25) 0px 6px 12px -2px, rgba(153, 153, 153, 0.3) 0px 3px 7px -3px;
}

.navbar-rounded .navbar {
  border-radius: 50px;
}

.navbar .img {
  width: 170px;
}

.navbar .navbar-brand {
  color: var(--blue);
  font-family: "Great Vibes", cursive;
  font-weight: 700;
  font-size: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-style: normal;

}

.navbar {
  padding: 0px !important;
  background: #fff;
  /* box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 10px; */
}

.navbar .nav-item {
  margin: 0px 10px;
}

.navbar .nav-item .nav-link {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500;
}

.dropdown-menu {
  background-color: #5e5e5e !important
}

.dropdown-menu .dropdown-item {
  color: #fff !important;
  border-bottom: 1px solid #fff;
  font-size: 13px;
}

.dropdown-menu .dropdown-item:hover {
  color: #000 !important;
}


@media(max-width:768px) {
  .navbar .img {
    width: 90px;
  }

  .navbar-rounded {
    background-color: var(--blue);
    padding: 10px 0px;
  }

  .navbar .navbar-brand {
    font-size: 20px;
  }

  .navbar-rounded .navbar {
    border-radius: 15px;
  }
}

/* navbar css end */



/* subpage banner start */

.sub-page {
  background: url(../image/banner/sub-paramount.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sub-page-heading {
  padding: 70px 0px;
  text-align: start;
}

.sub-page-heading h1 {
  color: #fff;
  font-size: 50px;
  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: 22px;
    font-weight: 600;
  }

  .sub-page-heading {
    padding: 20px 0px;
    text-align: start;
  }
}

/* sub page banner end */




/* success style start */
.success-form {
  margin-top: 150px;
}

.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(--blue);
  color: #fff;
  padding: 10px 20px;
}

/*success style end */


/* ======================  About Start  ======================*/
.about-section {
  position: relative;
}

.all-sec-heading {
  margin-bottom: 50px;
}

.about-section .image-effect {
  transition: all 0.3s;
  overflow: hidden;
  border-radius: 12px;
}

.about-section .image-effect:hover img {
  transform: scale(1.05);
}

.about-section .image-effect img {
  transition: all 0.3s;
}

.about-section .about-shape img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.about-section__image {
  display: grid;
  grid-template-columns: 52% 44%;
  gap: 24px;
}






@media screen and (max-width: 991px) {
  .about-section__image {
    grid-template-columns: 51% 43%;
  }
}

@media screen and (max-width: 575px) {
  .about-section__image {
    grid-template-columns: 51% 41%;
  }
}

.about-section__image img {
  border-radius: 12px;
  width: 100%;
}

.about-section__content .about-details-box {
  border: 1px solid hsl(var(--border-color)/0.4);
  border-radius: 12px;
  text-align: center;
  padding: 24px;
}



@media screen and (max-width: 1399px) {
  .about-section__content .about-details-box p {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .about-section__content .about-details-box {
    padding: 15px;
  }

  .about-section__content .about-details-box h2 {
    font-size: 22px;
  }

  .about-section__content .about-details-box p {
    font-size: 14px;
  }
}

.about-section__content .about-lists {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.about-section__content .about-lists li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-section__content .about-lists li:nth-child(even) i {
  color: hsl(var(--base-two));
}

.about-section__content .about-lists li i {
  color: var(--blue);
}

@media(max-width: 767px) {
  .all-sec-heading {
    margin-bottom: 30px;
  }
}








/* about page */



.about-us-page-details {
  margin-bottom: 40px;
}

.about-us-ul p {
  color: #000;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-us-ul ul li {
  list-style-type: disc;
  line-height: 1.8;
  color: #000;
  font-weight: 500;
}

@media(max-width: 767px) {
  .about-us-page-details {
    margin-bottom: 20px;
  }

  .about-us-ul ul li {
    font-size: 12px;
    list-style: none;
  }
}


/* ======================  About End  ======================*/



/* services start */
.product-section {
  background-color: #f5f5f5;
}

.product-card {
  position: relative;
  /* height: 400px; */
  overflow: hidden;
  transition: all 0.3s ease;

}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.377);
  z-index: 1;
  transition: opacity 0.3s ease;
}


.product-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  transition: opacity 0.3s ease;
}


.product-btn {
  position: absolute;
  top: 95%;
  left: -150%;
  transform: translateY(-50%);
  background-color: var(--blue);
  color: white;
  font-size: 20px;
  padding: 10px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  z-index: 3;
  transition: left 0.4s ease;
  /* border-radius: 5px; */
}


.product-card:hover::before {
  opacity: 0;
}

.product-card:hover .product-overlay {
  opacity: 0;
}

.product-card:hover .product-btn {
  left: 0px;
  color: #fff;
}

@media (max-width: 767px) {

  .product-card {
    margin-bottom: 20px;
  }

  .product-overlay {
    font-size: 1rem;
  }
}

/* services end */




/* ======================  Faq Start  ======================*/
.faq-img {
  border-radius: 10px;
  overflow: hidden;
}

.faq-img:hover img {
  transform: scale(1.1);
}

.faq-img img {
  transition: all 0.3s ease-in-out;
}

.accordion-item {
  background-color: #929292 !important;
  color: #fff !important;
  margin-bottom: 20px;
}

.accordion-button {
  background: var(--blue) !important;
  color: #fff;
}

.accordion-button::after {
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  color: #fff;
}


/* ======================  Faq End  ======================*/




/* ======================  Blog Start  ======================*/
.blog-item {
  border-radius: 10px;
  border: 2px solid var(--dark);
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

.blog-item:hover {
  border-color: var(--blue);
  background-color: var(--blue);
}

.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;
}

.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;
}

.blog-item:hover .blog-text p {
  color: #ffff;
}


.blog-section .blog-details .blog-text p {
  color: #000 !important;
  text-align: justify !important;

}

/* ======================  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-detail-content{
    margin-bottom: 25px;
  }

}

/* blog-details css 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: 25px;
  font-weight: 600;
  margin-bottom: 15px;
}

.enq-detail ul {
  padding-left: 10px;
}

.enq-detail ul li {
  list-style: disc;
  line-height: 1.9;
}

.enq-btn button {
  background-color: var(--blue);
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.enq-form-btn {
  background-color: var(--blue);
  color: #fff;
}

.enq-form-btn:hover {
  background-color: var(--blue);
  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 */



/* vedio-section start here */

.youtube-video iframe {
  border: 10px solid var(--blue);

}

.youtube-head {
  color: var(--black);
  text-align: center;
  padding-bottom: 20px;
}


.youtube-head span {
  color: var(--blue);
}

@media (min-width:768px) and (max-width:992px) {
  .youtube-video iframe {
    height: 340px !important;
  }

}

/* vedio-section end here */



/* ======================================== why choose us start======================================== */


.why-choose-nsv .content small {
  color: var(--blue);
  font-size: 16px;
}

.why-choose-nsv .highlight {
  background: var(--blue);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.why-choose-nsv .image-wrapper img {
  border-radius: 20px;
  object-fit: cover;
}

.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;
  }
}

/* ======================================== why choose us end======================================== */




/* ------------- testimonial section css start here --------------- */

.testimonials {
  background: #ffffff;
}

.testimonials .testimonial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonials .testimonial-text p {
  margin-bottom: 5px;
  color: var(--blue);
}

.testimonials .testimonial-text h2 {
  font-size: 50px;
  font-weight: 600;
  color: #403226;
}

.testimonial-card {
  background: #fff;
  box-shadow: rgba(2, 56, 117, 0.35) 0px 5px 15px;
  margin: 10px;
  padding: 30px;
  border-radius: 20px;
  min-height: 250px;
}

.testimonial-card .testimonial-card-text .star-icon {
  margin-bottom: 20px;
}

.testimonial-card .testimonial-card-text .star-icon i {
  color: #f09d19;
  font-size: 12px;
}

.testimonial-card .testimonial-card-text p {
  font-style: italic;
  font-size: 12px;
  font-weight: 400;
  color: rgb(154, 149, 149);
  line-height: 2;
}

.testimonial-card .testimonial-card-text h3 {
  font-size: 18px;
  font-weight: 350;
  color: var(--blue);
}

/* responsive css start */

@media screen and (max-width: 767px) {
  .testimonials .testimonial-text {
    margin-bottom: 10px;
  }

  .testimonials .testimonial-text h2 {
    font-size: 30px;
  }
}

/* responsive css end */

/* ----------- end of testimonial section here -------------- */



/* contact css end */
.contact .contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  text-align: center;
  min-height: 270px !important;
}

.contact .contact-box .contact-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .contact-box .contact-inner i {
  color: #fff !important;
}

/* contact start */

.contact .form-control {
  border: 1px solid var(--dark) !important;
  display: block;
  width: 100%;
  /* padding: 0.375rem 0.75rem; */
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;

}

.contact h4 {
  color: var(--dark) !important;
}

.contact p {
  font-weight: bold;
}

.contact .bg-primary {
  background-color: var(--blue) !important;
}

.contact .btn-primary {
  background-color: var(--dark) !important;
  border-color: var(--dark) !important;
}


.captchasep1 {
  display: flex;
}

.captchasep1 input {
  width: 100% !important;
  margin-top: 0 !important;
  /* height: 63px; */
}

.captchasep1 .form-floating>.form-control,
.form-floating>.form-select {
  height: 40px;
  line-height: 1.25;

}

::placeholder {
  color: #000 !important;
}

.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 {
  margin-bottom: 10px;
}


.captchasep1 .captcha-codes-sec p {
  margin-bottom: 0;
  letter-spacing: 9px;
  font-style: italic;
  font-size: 24px;
  /* padding: 10px; */
  /* height: 100%; */
  color: #000;
  font-weight: bolder !important;
}

.map iframe {
  width: 100%;
  height: 510px;
}

@media(max-width:768px) {
  .captchasep1 .captcha-codes-sec p {
    font-size: 24px;
  }

  .map iframe {
    width: 100%;
    height: 210px;
  }
}

@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: 10px;
  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 css end */


/* footer start */
.footer-section {
  background-color: var(--blue);
  padding: 60px 0px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  width: 250px;
}

.footer-para {
  margin-bottom: 25px;
}

.footer-para p {
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
  text-align: start;
}

.footer-icon {
  display: flex;
  gap: 15px;
}

.footer-icon a {
  background-color: #929090;
  color: #fff;
  padding: 8px 14px;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.5s ease-out;
}

.footer-icon a:hover {
  background-color: #fff;
  color: var(--blue);
  border-radius: 0px;
}

.footer-heading {
  margin-bottom: 20px;
}

.footer-heading h3 {
  margin-bottom: 0px;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.footer-line {
  display: inline-block;
  height: 2px;
  width: 45px;
  background-color: #fff;
}

.footer-ul ul li {
  line-height: 2;
}

.footer-ul ul li:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: inline;
  padding: 5px;
  transition: 0.4s ease-out;
}

.footer-ul ul li a {
  color: #fff;
  font-weight: 500;
}

.footer-ul ul li a i {
  padding-right: 7px;
  font-size: 12px;
  font-weight: 600;
}

.footer-cont-name {
  display: flex;
  gap: 15px;
  color: #fff;
  border-bottom: 1px solid #ffffff28;
}

.footer-cont-icon span {
  color: #fff;
  font-size: 25px;
}

.footer-icon-name {
  margin-bottom: 12px;
}

.footer-icon-name h4 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-icon-name a {
  color: #fff;
  font-weight: 500;
}

@media(max-width: 991px) {
  .footer-row {
    margin-bottom: 20px;
  }
}

@media(max-width: 767px) {
  .footer-section {
    padding: 30px 0px;
  }

  .footer-row {
    margin-bottom: 20px;
  }

  .footer-logo img {
    width: 170px;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-para {
    margin-bottom: 10px;
  }

  .footer-icon {
    gap: 10px;
  }

  .footer-icon a {
    padding: 7px 11px;
    font-size: 12px;
  }

  .footer-heading {
    margin-bottom: 0px;
  }

  .footer-heading h3 {
    font-size: 18px;
  }

  .footer-ul ul li a {
    font-size: 12px;
  }

  .footer-ul ul li a i {
    padding-right: 4px;
  }

  .footer-ul ul li {
    line-height: 1.7;
  }

  .footer-cont-icon span {
    font-size: 19px;
  }

  .footer-cont-name {
    gap: 10px;
  }

  .footer-icon-name h4 {
    font-size: 17px;
  }

  .footer-icon-name a {
    font-size: 12px;
  }

}

/* footer end */


/* copyright start */

/* copyright */
.copyright-section {
  background-color: var(--blue);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 10px;
}

.main-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.right-side p,
.left-side p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0px;
}

.left-side p a {
  text-decoration: none;
  color: #fff;
}

@media (max-width: 767px) {
  .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;
  }
}

/* copyright end */