body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: orange;
  text-decoration: none;
}

a:hover {
  color: #ffa500b8;
  text-decoration: none;
}

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

/*--------------------------------------------------------------
              # Preloader
              --------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid orange;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
                # Back to top button
                --------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: orange;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ffa500b8;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
                # Disable aos animation delay on mobile devices
                --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
                # Header
                --------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header.fixed-top {
  height: 70px;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: orange;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
                # Navigation Menu
                --------------------------------------------------------------*/
/**
                * Desktop Navigation 
                */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 5px;
  background-color: orange;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: orange;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: orange;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
                * Mobile Navigation 
                */
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  /* bottom: 15px; */
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile > ul > li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: orange;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: orange;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
                # Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f0f4f8;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: orange;
  color: white;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}

.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

.section-title h3 span {
  color: orange;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .section-title p {
    width: 50%;
  }
}
/*--------------------------------------------------------------
      #Demo Cards
--------------------------------------------------------------*/



.image {
  height: 120px;
  width: 160px;
  object-fit: contain;
}

.card-min-height {
  min-height: 80px;
}

.cards .coursecard {
  background-color: #ffffff;
  box-shadow: 1px 10px 17px #666666;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.cards .coursecard:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  border-top: 3px solid orange;
}

.cards .coursecard:hover h5 {
  color: orange;
}

.cards .coursecard a {
  background: orange;
  border: 0;
  /* padding: 10px 32px; */
  color: white;
  transition: 0.4s;
  border-radius: 4px;
}

.cards .coursecard a:hover {
  background: #ffc107;
}
/*-------------------------------------------------------------
                # About
                --------------------------------------------------------------*/
.about {
  background-image: url("../images/BG8.jpg");
  background-position: center;
  background-size: cover;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

.about .content ul li:first-child {
  margin-top: 35px;
}

.about .content ul i {
  background: #fff;
  box-shadow: 0px 6px 15px rgba(16, 110, 234, 0.12);
  font-size: 24px;
  padding: 20px;
  margin-right: 15px;
  color: orange;
  border-radius: 50px;
}

.about .content ul h5 {
  font-size: 18px;
  color: #555555;
}

.about .content ul p {
  font-size: 15px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/* ============== Need Section  ============*/
.need .orange {
  padding-top: 50px;
  padding-bottom: 30px;
  transition: all ease-in-out 0.3s;
  background: white;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
}

.need .orange .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: orange;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid white;
}

.need .orange h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.need .orange p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.need .service-item:hover .orange h3 {
  color: orange;
}

.need .service-item:hover .orange .icon {
  background: white;
  border: 2px solid orange;
}

.need .service-item:hover .orange .icon i {
  color: orange;
}

.need .blue {
  padding-top: 50px;
  padding-bottom: 30px;
  transition: all ease-in-out 0.3s;
  background: white;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
}

.need .blue .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #2db6fa;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid white;
}

.need .blue h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.need .blue p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.need .service-item:hover .blue h3 {
  color: #2db6fa;
}

.need .service-item:hover .blue .icon {
  background: white;
  border: 2px solid #2db6fa;
}

.need .service-item:hover .blue .icon i {
  color: #2db6fa;
}

.need .green {
  padding-top: 50px;
  padding-bottom: 30px;
  transition: all ease-in-out 0.3s;
  background: white;
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  border-radius: 8px;
}

.need .green .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: #08da4e;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid white;
}

.need .green h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.need .green p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.need .service-item:hover .green h3 {
  color: #08da4e;
}

.need .service-item:hover .green .icon {
  background: white;
  border: 2px solid #08da4e;
}

.need .service-item:hover .green .icon i {
  color: #08da4e;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  /* padding: 30px; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  text-align: center;
  transition: 0.3s;
  height: 24rem;
}

.pricing .box img {
  height: 15rem;
  padding: 30px 30px;
  /* max-width: 50%; */
  transition: 0.5s;
  transform: scale(1.1);
}

.pricing .box h3 {
  font-size: 24px;
  padding-left: 30px;
  padding-right: 30px;
  color: #212529;
  font-weight: 700;
  margin-bottom: 18px;
}

.pricing .box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
  border-top: 3px solid orange;
}

/* .pricing .box:hover img {
transform: scale(1);
} */

.pricing .height {
  height: 3rem;
}

/*--------------------------------------------------------------
              # work Section
--------------------------------------------------------------*/
.work .content {
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 20px;
}

.work .content h3 {
  font-weight: 600;
  font-size: 32px;
}

.work .content ul {
  list-style: none;
  padding: 0;
}

.work .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: orange;
}

.work .content p:last-child {
  margin-bottom: 0;
}

.work .heading {
  color: orange;
  font-size: 28px;
  font-weight: 700;
}
/*--------------------------------------------------------------
              # Features
--------------------------------------------------------------*/
.features .feature-box {
  padding: 13px 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
  height: 100%;
  background-color: white;
}

/* .features .container {
    padding: 30px;
    background-color: #f0f4f8;
    border-radius: 15px;
  } */

.features .feature-box h3 {
  font-size: 18px;
  /* color: orange; */
  font-weight: 700;
  margin: 0;
}

.features .feature-box i {
  line-height: 0;
  background: #ffa50024;
  padding: 4px;
  margin-right: 10px;
  font-size: 24px;
  border-radius: 3px;
  transition: 0.3s;
}

.features .feature-box:hover i {
  background: orange;
  color: #fff;
}

/*--------------------------------------------------------------
                # Counts
                --------------------------------------------------------------*/

.border .contacts {
  background-color: #f0f4f8;
  padding: 40px;
  border-radius: 5px;
  height: 26rem;
}
.counts .count-box.orange {
  border-left: 3px solid #f68c09;
}

.counts .count-box.blue {
  border-left: 3px solid #2db6fa;
}

.counts .count-box.green {
  border-left: 3px solid #08da4e;
}

.counts .count-box.red {
  border-left: 3px solid #e9222c;
}

.counts .count-box.box {
  display: flex;
  height: 10rem;
  padding: 30px;
  background: #fff;
  text-align: center;
  align-items: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.counts .count-box.box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.counts .count-box i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  /* color: #4154f1; */
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  /* color: orange; */
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
            # Clients
            --------------------------------------------------------------*/
.clients {
  padding: 15px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.clients img {
  max-width: 50%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients .card {
  display: flex;
  height: 8rem;
  background: #fff;
  text-align: center;
  align-items: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.clients .card:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 60%;
  }
}

/* Slider */
.slick-slide {
  margin-left: 20px;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  width: 8rem;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*--------------------------------------------------------------
                # Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../images/digital-business-card-banner2.webp") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: orange;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
              # F.A.Q Section
              --------------------------------------------------------------*/
@media (max-width: 991px) {
  .faq {
    padding: 0;
  }
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  /* color: orange; */
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: gray;
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 40px 20px 60px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
  background: white;
  box-shadow: none;
  border-radius: 5px;
}

.faq .accordion-button:not(.collapsed) {
  color: orange;
  border-bottom: 0;
  box-shadow: none;
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: orange;
}

.faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
  color: orange;
}

.faq .accordion-body {
  padding: 0 30px 25px 60px;
  text-align: justify;
  border: 0;
  border-radius: 5px;
  background: white;
  box-shadow: none;
}

.faq .accordion-body a {
  background-color: white;
  color: orange;
  border: 0;
  transition: 0.4s;
}

.faq .accordion-body a:hover {
  color: #ffa500b8;
}

/*--------------------------------------------------------------
          # banner section
          --------------------------------------------------------------*/
.banner {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/digital-business-card-banner.webp");
  background-size: cover;
  padding: 8rem 0;
}

.banner h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.banner p {
  color: #fff;
}

/*--------------------------------------------------------------
              #Career
            --------------------------------------------------------------*/




/*--------------------------------------------------------------
              #Contact
            --------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 28px 0;
  border-radius: 4px;
  border-top: 3px solid orange;
}

.contact .info-box i {
  font-size: 32px;
  color: #ffc107;
  border-radius: 50%;
  padding: 10px;
  border: 2px dotted orange;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .contactus {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
  border-top: 3px solid orange;
}

.contact .contactus .form-group {
  margin-bottom: 25px;
}

.contact .contactus input,
.contact .contactus textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .contactus input:focus,
.contact .contactus textarea:focus {
  border-color: orange;
}

.contact .contactus input {
  padding: 10px 15px;
}

.contact .contactus textarea {
  padding: 12px 15px;
}

.contact .contactus button {
  background: orange;
  border: 0;
  padding: 10px 32px;
  color: black;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .contactus button:hover {
  background: #ffc107;
}

/*--------------------------------------------------------------
              # Footer
              --------------------------------------------------------------*/
.footer {
  font-size: 14px;
}

.footer button {
  background: orange;
  border: 0;
  border-radius: 5px;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.footer button:hover {
  background: #ffa500b8;
}

#footer .footer-info .card-img {
  width: 60%;
}

.footer .footer-content {
  background: #485664;
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info .para {
  text-align: justify;
}

.footer .footer-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: white;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: orange;
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: orange;
}

.footer .footer-content .footer-info a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-info a:hover {
  color: orange;
}

.footer .footer-legal {
  padding: 30px 0;
  background: #3a4753;
}

.footer .footer-content .footer-info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #3a4753;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .footer-info .social-links a:hover {
  background: orange;
  text-decoration: none;
}
.card .card-height{
  height: 8rem !important;
}