@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap");
body {
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6, p {
  font-family: "Open Sans", sans-serif;
}

.btn {
  padding: 8px 20px;
  border-radius: 360px;
  transform: 0.3s;
}
.btn.primary {
  background-color: #ed1c24;
  color: #fff;
  font-size: 16px;
}
.btn.radius-8 {
  border-radius: 8px;
}
.btn.lg {
  font-size: 20px;
  font-weight: 600;
}
.btn:focus {
  box-shadow: none;
  background-color: #c61017;
}
.btn:hover {
  background-color: #c61017;
}

.section-title {
  color: #002a34;
  font-size: 24px;
  font-weight: 600;
  margin: 50px 0px;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 20px;
  }
}

.section-title-sm {
  color: #ed1c24;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.heading1 {
  color: #240e04;
  font-size: 28px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading1 {
    font-size: 24px;
  }
}
.heading1 span {
  color: #ed1c24;
}

.heading2 {
  color: #ed1c24;
  font-size: 36px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .heading2 {
    font-size: 24px;
  }
}

.heading3 {
  color: #002a34;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .heading3 {
    font-size: 20px;
  }
}

.heading4 {
  color: #0ea249;
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .heading4 {
    font-size: 20px;
  }
}

.heading5 {
  color: #002a34;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .heading5 {
    font-size: 20px;
    margin-top: 25px;
  }
}

.top-header {
  background-color: #ed1c24;
  color: #fff;
  padding: 5px 0px;
}
.top-header .tel {
  margin-right: 25px;
}
.top-header .tel a, .top-header .email a {
  color: #fff;
  font-size: 14px;
}
.top-header .searchbox {
  width: 260px;
  height: 28px;
  background-color: #fff;
  border-radius: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: inset 2px 1px 6px 2px rgba(0, 0, 0, 0.23);
  margin-left: auto;
  margin-right: 0px;
}
@media (max-width: 991px) {
  .top-header .searchbox {
    margin-left: 0px;
    margin-right: auto;
    margin-top: 8px;
  }
}
@media (max-width: 575px) {
  .top-header .searchbox {
    width: 100%;
  }
}
.top-header .searchbox input {
  width: calc(100% - 40px);
  height: 26px;
  border: none;
  font-size: 14px;
  color: #000;
  background-color: transparent;
  padding-left: 15px;
}
.top-header .searchbox input:focus {
  outline: 0px;
}
.top-header .searchbox button {
  width: 40px;
  height: 26px;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
.top-header .searchbox button:focus {
  outline: 0px;
}

header nav.navbar .navbar-brand {
  padding: 0px;
}
@media (max-width: 575px) {
  header nav.navbar .navbar-brand {
    width: 80%;
  }
}
@media (max-width: 350px) {
  header nav.navbar .navbar-brand {
    width: 65%;
  }
}
header nav.navbar .navbar-brand .logo {
  max-width: 100%;
}
header nav.navbar .nav-item .nav-link {
  color: #141414;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  position: relative;
  transition: 0.3s;
  font-weight: 500;
}
header nav.navbar .nav-item .nav-link:hover::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ed1c24;
  position: absolute;
  bottom: -27px;
  left: 0px;
}
@media (max-width: 767px) {
  header nav.navbar .nav-item .nav-link:hover {
    color: #ed1c24;
  }
  header nav.navbar .nav-item .nav-link:hover::after {
    display: none;
  }
}
header nav.navbar .nav-item .nav-link.active::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #ed1c24;
  position: absolute;
  bottom: -27px;
  left: 0px;
}
@media (max-width: 767px) {
  header nav.navbar .nav-item .nav-link.active {
    color: #ed1c24;
  }
  header nav.navbar .nav-item .nav-link.active::after {
    display: none;
  }
}
@media (max-width: 991px) {
  header nav.navbar .navbar-toggler {
    color: #ed1c24;
  }
}
header nav.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.hero-carousel .owl-dots {
  position: relative;
  top: -50px;
  text-align: center;
}
.hero-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #ed1c24;
  margin: 0px 8px;
  border-radius: 360px;
}
.hero-carousel .owl-dots .owl-dot.active {
  background-color: #002a34;
}

.hero {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0px;
  height: 524px;
}
@media (max-width: 575px) {
  .hero {
    padding: 70px 0px;
  }
}
.hero-content {
  max-width: 700px;
  height: auto;
}
.hero-content h1 {
  color: #002a34;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .hero-content h1 {
    font-size: 20px;
  }
}
.hero-content h1 span {
  color: #ed1c24;
}
.hero-content h2 {
  color: #002a34;
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .hero-content h2 {
    font-size: 30px;
  }
}
.hero-content p {
  color: #141414;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 30px;
}

.featured-products .productbox {
  width: 100%;
  height: 288px;
  background-image: url("../images/productbox-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  padding: 25px;
}
@media (max-width: 767px) {
  .featured-products .productbox {
    height: auto;
  }
}
@media (max-width: 757px) {
  .featured-products .productbox {
    padding: 15px;
  }
}
.featured-products .productbox .pimg {
  max-width: 90%;
  width: auto;
  height: auto;
  margin: 0px auto;
}
@media (max-width: 1199px) {
  .featured-products .productbox .pimg {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .featured-products .fp-carousel {
    text-align: center;
  }
}
.featured-products .fp-carousel .owl-prev {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: -40px;
  color: #ed1c24 !important;
  font-size: 24px !important;
}
@media (max-width: 767px) {
  .featured-products .fp-carousel .owl-prev {
    position: relative;
    top: auto;
    left: auto;
    bottom: 0px;
    margin: 0px 5px;
  }
}
.featured-products .fp-carousel .owl-next {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  right: -40px;
  color: #ed1c24 !important;
  font-size: 24px !important;
}
@media (max-width: 767px) {
  .featured-products .fp-carousel .owl-next {
    position: relative;
    top: auto;
    bottom: 0px;
    right: auto;
    margin: 0px 5px;
  }
}

.home-about {
  padding: 56px 0px;
}
.home-about p.para {
  color: #240e04;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 767px) {
  .home-about-content {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .home-about .home-about-img {
    width: 100%;
    margin-top: 50px;
  }
}
@media (max-width: 991px) {
  .home-about .home-about-img {
    width: 50%;
    margin: 0px auto 25px auto;
  }
}
@media (max-width: 767px) {
  .home-about .home-about-img {
    display: block;
  }
}
@media (max-width: 757px) {
  .home-about .home-about-img {
    width: 70%;
  }
}

.manufacturer-portfolio {
  padding-bottom: 54px;
}
.manufacturer-portfolio .heading1 {
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .manufacturer-portfolio .mp-box {
    max-width: 300px;
    margin: 15px auto;
  }
}
.manufacturer-portfolio .mp-box h4 {
  color: #002a34;
  font-size: 20px;
  font-weight: 600;
  margin: 20px 0px;
}
@media (max-width: 575px) {
  .manufacturer-portfolio .mp-box h4 {
    margin: 15px 0px;
  }
}
.manufacturer-portfolio .mp-box p {
  color: #002a34;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: justify;
}
.manufacturer-portfolio .mp-box ul {
  padding: 0px;
  margin: 0px;
}
.manufacturer-portfolio .mp-box ul li {
  list-style-type: none;
  color: #002a34;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  background-image: url("../images/arrow-alt.png");
  background-repeat: no-repeat;
  background-position: left top 6px;
  padding-left: 25px;
}

.testimonials {
  width: 100%;
  height: auto;
  background-image: url("../images/testimonials.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top right;
  background-size: cover;
  padding: 50px 0px;
  color: #fff;
}
.testimonials .section-title-sm {
  color: #fff;
}
.testimonials .heading1 {
  color: #fff;
}
.testimonials .testimonials-carousel .owl-dots {
  text-align: center;
  margin-top: 34px;
}
.testimonials .testimonials-carousel .owl-dots .owl-dot {
  width: 15px;
  height: 15px;
  background-color: #ed1c24;
  border-radius: 360px;
  margin: 0px 5px;
}
.testimonials .testimonials-carousel .owl-dots .owl-dot.active {
  background-color: #fff;
}
.testimonials .testimonials-box {
  max-width: 740px;
  height: auto;
  background-color: #fff;
  border-radius: 8px;
  margin: 50px auto 0px auto;
  padding: 50px;
}
.testimonials .testimonials-box .author-dp {
  width: 127px;
  height: 127px;
  border-radius: 360px;
  position: relative;
  top: -65px;
  left: auto;
  right: auto;
  margin: 0px auto;
}
.testimonials .testimonials-box p {
  color: #141414;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
.testimonials .testimonials-box .author-details {
  color: #141414;
  font-size: 16px;
  font-weight: 700;
  margin-top: 8px;
}
.testimonials .testimonials-box .author-details span {
  width: 100%;
  font-size: 15px;
  font-weight: 400;
  margin-top: 4px;
  display: block;
}

.blog {
  width: 100%;
  height: auto;
  padding: 50px 0px;
}
@media (max-width: 991px) {
  .blog .blogbox {
    margin-top: 15px;
  }
}
.blog .blogbox .blog-img {
  width: 100%;
  max-height: 250px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 757px) {
  .blog .blogbox .blog-img {
    max-height: 250px;
  }
}
.blog .blog-date {
  color: #9a9a9a;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  margin: 10px 0px;
}
.blog h6 {
  color: #ed1c24;
  font-weight: 600;
  font-size: 16px;
}
.blog h6 a {
  color: #ed1c24;
}
.blog p {
  color: #3a3a3a;
  font-weight: 400;
  font-size: 14px;
}
.blog .heading1 {
  margin-bottom: 45px;
}

footer {
  width: 100%;
  height: auto;
  background-color: #222222;
  color: #fff;
  padding-top: 40px;
}
footer .f-logo img {
  max-width: 100%;
}
footer .f-text {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  margin-top: 15px;
}
footer .socialmedia {
  padding: 0px;
  margin: 0px;
}
@media (max-width: 991px) {
  footer .socialmedia {
    margin-bottom: 25px;
  }
}
footer .socialmedia li {
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
}
footer .socialmedia li a {
  color: #fff;
  transition: 0.3s;
}
footer .socialmedia li a i {
  color: #ed1c24;
}
footer .socialmedia li a:hover {
  color: #ed1c24;
}
footer .f-heading {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 35px;
}
footer .f-heading::after {
  content: "";
  width: 65px;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #ed1c24;
}
footer .f-links {
  padding: 0px;
  margin: 0px;
}
footer .f-links li {
  list-style-type: none;
  width: 45%;
  height: auto;
  display: inline-block;
  vertical-align: top;
  margin: 4px;
}
@media (max-width: 480px) {
  footer .f-links li {
    width: 100%;
  }
}
footer .f-links li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  transition: 0.3s;
}
footer .f-links li a i {
  color: #ed1c24;
}
footer .f-links li a:hover {
  color: #ed1c24;
}
footer .copyright {
  width: 100%;
  height: auto;
  background-color: #181818;
  color: #fff;
  padding: 15px 0px;
  margin-top: 40px;
  position: relative;
}
@media (max-width: 991px) {
  footer .copyright {
    text-align: center;
  }
}
@media (max-width: 575px) {
  footer .copyright {
    padding-bottom: 50px;
  }
}
footer .copyright .developby {
  width: 100%;
  display: block;
  font-size: 12px;
  text-align: right;
}
@media (max-width: 991px) {
  footer .copyright .developby {
    text-align: center;
    margin-top: 10px;
    display: block;
    margin-bottom: 10px;
  }
}
footer .copyright .developby a {
  color: #fff;
}
footer .copyright .developby a:hover {
  color: #ed1c24;
}

.info {
  padding: 0px;
  margin: 0px;
}
.info li {
  list-style-type: none;
  position: relative;
  padding-left: 45px;
  margin-top: 25px;
}
.info li i {
  width: 32px;
  height: 32px;
  background-color: #ed1c24;
  border-radius: 360px;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  line-height: 32px;
}
.info li span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
}
.info li span a {
  color: #fff;
  transition: 0.3s;
}
.info li span a:hover {
  color: #ed1c24;
}

/* Product Details page */
.page-height {
  width: 100%;
  min-height: 550px;
  height: auto;
}

.innerbanner {
  width: 100%;
  height: auto;
  padding: 140px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
@media (max-width: 991px) {
  .innerbanner {
    background-position: top left;
    padding: 100px 0px;
  }
}
@media (max-width: 767px) {
  .innerbanner {
    background-position: top left;
    padding: 50px 0px;
  }
}
.innerbanner.img-1 {
  background-image: url("../images/innerbanner-1.jpg");
}
.innerbanner.img-2 {
  background-image: url("../images/innerbanner-2.jpg");
}
.innerbanner.img-3 {
  background-image: url("../images/innerbanner-3.jpg");
}
.innerbanner.img-4 {
  background-image: url("../images/innerbanner-4.jpg");
}
.innerbanner h1 {
  color: #002a34;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .innerbanner h1 {
    font-size: 24px;
  }
}
.innerbanner h1 span {
  color: #ed1c24;
}

.breadcrumbs {
  padding: 0px;
  margin: 0px;
  display: flex;
}
.breadcrumbs li {
  list-style-type: none;
  font-size: 14px;
  font-weight: 400;
  color: #ed1c24;
}
.breadcrumbs li a {
  color: #002a34;
  background-image: url("../images/breadcrumbs.png");
  background-repeat: no-repeat;
  background-position: center right 10px;
  padding-right: 25px;
  transition: 0.3s;
}
.breadcrumbs li a:hover {
  color: #ed1c24;
}

.page-content {
  padding: 68px 0px;
}

.product-details p {
  color: #002a34;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.product-title {
  color: #ed1c24;
  font-size: 36px;
  font-weight: 600;
  background-image: url("../images/rx.png");
  background-repeat: no-repeat;
  background-position: top left;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .product-title {
    font-size: 24px;
    background-size: 24px;
    margin-top: 25px;
  }
}

.product-details-contant h3 {
  color: #002a34;
  font-size: 24px;
  font-weight: 600;
  margin: 16px 0px;
}
@media (max-width: 767px) {
  .product-details-contant h3 {
    font-size: 20px;
  }
}
.product-details-contant h4 {
  color: #0ea249;
  font-size: 24px;
  font-weight: 600;
  background-image: url("../images/notes-medical.png");
  background-repeat: no-repeat;
  background-position: top 5px left;
  padding-left: 40px;
}
@media (max-width: 767px) {
  .product-details-contant h4 {
    font-size: 20px;
    background-size: 20px;
    background-position: top 4px left;
  }
}
.product-details-contant h5 {
  color: #002a34;
  font-size: 24px;
  font-weight: 700;
  margin: 24px 0px;
}
@media (max-width: 767px) {
  .product-details-contant h5 {
    font-size: 20px;
    margin-top: 25px;
  }
}
.text-indication, .product-details-contant h6 {
  background-color: #0ea249;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 8px 25px;
  display: inline-block;
  margin-top: 35px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .text-indication, .product-details-contant h6 {
    font-size: 20px;
  }
}
.text-indication::before, .product-details-contant h6::before {
  content: "";
  position: absolute;
  right: -25px;
  top: 0px;
  width: 0;
  height: 0;
  border-top: 23px solid transparent;
  border-left: 25px solid #0ea249;
  border-bottom: 21px solid transparent;
}
@media (max-width: 767px) {
  .text-indication::before, .product-details-contant h6::before {
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
}

.indication-list, .product-details-contant ul {
  padding: 0px;
  margin: 0px;
}
.indication-list li, .product-details-contant ul li {
  list-style-type: none;
  color: #002a34;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  padding-left: 25px;
  position: relative;
  background-image: url("../images/circle-check.png");
  background-repeat: no-repeat;
  background-position: top 7px left;
}

.product-showbox {
  width: 100%;
  height: auto;
  background-color: #f0f0f0;
  border: 1px solid #ededed;
  padding: 25px;
  text-align: center;
}
.product-showbox img {
  width: auto;
  height: auto;
  max-height: 350px;
  cursor: pointer;
}
.product-showbox .pd-img {
  max-width: 100%;
}

.pshowbox-thumb {
  padding: 0px;
  margin: 0px;
  margin-top: 15px;
}
.pshowbox-thumb li {
  list-style-type: none;
  width: 73px;
  padding: 8px;
  background-color: #f0f0f0;
  border: 1px solid #ededed;
  margin-right: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  display: inline-block;
}
.pshowbox-thumb li img {
  width: 100%;
  max-height: 35px;
}

/* End Product Details page */
/* Start Product page */
.productlist {
  width: 100%;
  height: auto;
  background-image: url("../images/productbox-bg2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productlist img {
  max-width: 100%;
}

.product-name-price-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ededed;
  padding: 5px 10px;
}
.product-name-price-group .product-name {
  margin: 0px;
}
.product-name-price-group .product-name a {
  color: #002a34;
  font-size: 20px;
  font-weight: 600;
}
.product-name-price-group .product-price {
  color: #0ea249;
  font-size: 18px;
  font-weight: 600;
  margin: 0px;
}
.product-name-price-group .product-price-discd {
  color: gray;
  font-size: 15px;
  text-decoration: line-through;
  margin: 0px 0px 0px 5px;
}

/* End Product page */
/* Start Contact page */
.contact-page .info i {
  color: #fff;
}
.contact-page .info span {
  color: #002a34;
}
.contact-page .info span a {
  color: #002a34;
}
.contact-page .heading5 {
  font-size: 30px;
  margin-bottom: 30px;
}
.contact-page .contact-form {
  max-width: 440px;
}

.input {
  width: 100%;
  height: 50px;
  border: 2px solid #002a34;
  border-radius: 8px;
  padding: 0px 15px;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #002a34;
  margin-bottom: 15px;
}
.input:focus {
  outline: 0px;
  border: 2px solid #0ea249;
}

textarea.input {
  height: 120px;
  padding: 10px 15px;
  resize: none;
}

.input-file {
  position: relative;
}
.input-file .getinput {
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  width: 0px;
  height: 0px;
  cursor: pointer;
  z-index: 1;
}
.input-file .input {
  cursor: pointer;
  line-height: 45px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* End Contact page */
/* Start R&D page */
.r_d-page p {
  color: #002a34;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
}
.r_d-page p a {
  color: #ed1c24;
  text-decoration: none;
}
.r_d-page p a:hover {
  text-decoration: underline;
}

.note {
  width: 100%;
  height: auto;
  background-color: #ccd4d6;
  padding: 25px;
  border-left: 10px solid #ed1c24;
}
.note i.fa-quote-left {
  color: #acb2b4;
  font-size: 36px;
}
.note .deg {
  text-align: right;
  font-weight: 600;
}

/* End R&D page */
.career-img {
  max-width: 100%;
}
@media (max-width: 991px) {
  .career-img {
    max-width: 50%;
    margin: 0px auto;
    display: block;
  }
}
@media (max-width: 767px) {
  .career-img {
    max-width: 80%;
  }
}

.about-page p, .career-page p, .investor-page p, .manufacturing-page p {
  color: #002a34;
  font-size: 14px;
  line-height: 24px;
}

/* Blog */
.blog-details-box .blog-date {
  color: #999999;
  margin-top: 25px;
  font-style: italic;
}
.blog-details-box h6 {
  color: #002a34;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}
.blog-details-box p {
  color: #002a34;
  font-size: 15px;
  line-height: 30px;
}
.blog-details-box .blog-img {
  padding: 5px;
  background-color: #002a34;
  border-radius: 8px;
  position: relative;
}
.blog-details-box .blog-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 42, 52, 0.23);
  position: absolute;
  left: -10px;
  top: 10px;
  border-radius: 8px;
}
.blog-details-box .blog-img img {
  position: relative;
  z-index: 1;
}

.blog-details-page .blog .blogbox .blog-img {
  height: 250px;
}

.social-links {
  display: flex;
  align-items: center;
  margin-top: 25px;
}
.social-links span {
  color: #6a6d6e;
  font-size: 16px;
  font-weight: 600;
  margin-right: 15px;
}
.social-links a {
  color: #6a6d6e;
  margin-right: 15px;
}
.social-links a:hover {
  color: #ed1c24;
}

/* End Blog */
/* Start FAQ */
.accordion-item {
  margin-bottom: 10px;
}

.accordion-button {
  background-color: #ed1c24 !important;
  color: #fff !important;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button.collapsed {
  background-color: #c3e3eb !important;
  color: #000 !important;
}

/* End FAQ*/
ul.pagination {
  margin: 0px;
  padding: 0px;
}
ul.pagination li.page-item {
  margin: 0px 5px;
}
ul.pagination li.page-item a {
  width: 30px;
  height: 30px;
  display: block;
  text-align: center;
  line-height: 30px;
  background-color: #cccccc !important;
  color: gray !important;
  border: none !important;
  border-radius: 360px;
}
ul.pagination li.page-item.active a {
  background-color: #ed1c24 !important;
  color: #fff !important;
}

.primary-sidebar-inner .card-title {
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #555555;
}
.primary-sidebar-inner .blogsidelising img.blogthumb {
  border-radius: 8px;
}
.primary-sidebar-inner .blogsidelising .blog-heading {
  font-size: 14px;
  font-weight: 600;
  color: black;
  transition: 0.3s;
}
.primary-sidebar-inner .blogsidelising .blog-heading:hover {
  color: #ed1c24;
}

.fixed-section {
  position: fixed;
  top: 50%;
  left: 0px;
  z-index: 100;
}
@media (max-width: 575px) {
  .fixed-section {
    top: auto;
    bottom: 0px;
    width: 100%;
  }
}
.fixed-section ul {
  padding: 0px;
}
@media (max-width: 575px) {
  .fixed-section ul {
    display: flex;
    margin-bottom: 0px;
  }
}
.fixed-section ul li {
  list-style-type: none;
  background-color: #0ea249;
  margin-bottom: 8px;
  width: 50px;
  height: 50px;
  transition: 0.3s;
  left: -100px;
}
@media (max-width: 575px) {
  .fixed-section ul li {
    margin-bottom: 0px;
    width: 100%;
  }
}
.fixed-section ul li.whatsapp {
  background-color: #0ea249;
}
.fixed-section ul li.call {
  background-color: #ed1c24;
}
.fixed-section ul li.email {
  background-color: #002a34;
}
.fixed-section ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
  color: #fff;
  font-size: 15px;
}
.fixed-section ul li i {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
}
.fixed-section ul li span {
  display: none;
  white-space: nowrap;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .fixed-section ul li span {
    display: block;
  }
}
.fixed-section ul li:hover {
  width: 120px;
  left: 0px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .fixed-section ul li:hover {
    width: 100%;
    left: inherit;
  }
}
.fixed-section ul li:hover span {
  width: 150px;
  display: inline-block;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .fixed-section ul li:hover span {
    width: inherit;
  }
}

.mainfous {
  background-color: #002a34;
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  margin-top: 25px;
}
@media (max-width: 991px) {
  .mainfous {
    padding-top: 15px;
  }
}
@media (max-width: 480px) {
  .mainfous {
    padding: 25px;
    padding-top: 0px;
  }
}
.mainfous h2 {
  margin-top: 0px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: #fff;
}
@media (max-width: 991px) {
  .mainfous h2 {
    margin-top: 25px;
  }
}
.mainfous h2::before {
  content: "";
  width: 50px;
  height: 2px;
  background-color: #ed1c24;
  position: absolute;
  left: 0px;
  bottom: 0px;
}
.mainfous p {
  margin: 0px;
  font-size: 14px;
  font-weight: 400;
}

.googlemap {
  width: 100%;
  height: 400px;
  border: 1px solid #cccccc;
}/*# sourceMappingURL=style.css.map */